summaryrefslogtreecommitdiffstats
path: root/drivers/staging/brcm80211/util
diff options
context:
space:
mode:
authorBrett Rudley2010-11-16 22:16:59 +0100
committerGreg Kroah-Hartman2010-11-17 22:06:05 +0100
commite6a12a07d0b06f8e614a212e26002e62071242e8 (patch)
tree7a084bb16a4264b80f5d0ed6b1de9ee531031cfc /drivers/staging/brcm80211/util
parentstaging: brcm80211: expose osl contents and start combining osl and pub_osl. (diff)
downloadkernel-qcow2-linux-e6a12a07d0b06f8e614a212e26002e62071242e8.tar.gz
kernel-qcow2-linux-e6a12a07d0b06f8e614a212e26002e62071242e8.tar.xz
kernel-qcow2-linux-e6a12a07d0b06f8e614a212e26002e62071242e8.zip
staging: brcm80211: completely remove osl_pubinfo_t typedef
Signed-off-by: Brett Rudley <brudley@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/brcm80211/util')
-rw-r--r--drivers/staging/brcm80211/util/linux_osl.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/staging/brcm80211/util/linux_osl.c b/drivers/staging/brcm80211/util/linux_osl.c
index 3869de75d8c8..eb5d285efc04 100644
--- a/drivers/staging/brcm80211/util/linux_osl.c
+++ b/drivers/staging/brcm80211/util/linux_osl.c
@@ -245,48 +245,48 @@ void osl_assert(char *exp, char *file, int line)
#if defined(BCMSDIO) && !defined(BRCM_FULLMAC)
u8 osl_readb(osl_t *osh, volatile u8 *r)
{
- osl_rreg_fn_t rreg = ((osl_pubinfo_t *) osh)->rreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_rreg_fn_t rreg = ((struct osl_pubinfo *) osh)->rreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
return (u8) ((rreg) (ctx, (void *)r, sizeof(u8)));
}
u16 osl_readw(osl_t *osh, volatile u16 *r)
{
- osl_rreg_fn_t rreg = ((osl_pubinfo_t *) osh)->rreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_rreg_fn_t rreg = ((struct osl_pubinfo *) osh)->rreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
return (u16) ((rreg) (ctx, (void *)r, sizeof(u16)));
}
u32 osl_readl(osl_t *osh, volatile u32 *r)
{
- osl_rreg_fn_t rreg = ((osl_pubinfo_t *) osh)->rreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_rreg_fn_t rreg = ((struct osl_pubinfo *) osh)->rreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
return (u32) ((rreg) (ctx, (void *)r, sizeof(u32)));
}
void osl_writeb(osl_t *osh, volatile u8 *r, u8 v)
{
- osl_wreg_fn_t wreg = ((osl_pubinfo_t *) osh)->wreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_wreg_fn_t wreg = ((struct osl_pubinfo *) osh)->wreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
((wreg) (ctx, (void *)r, v, sizeof(u8)));
}
void osl_writew(osl_t *osh, volatile u16 *r, u16 v)
{
- osl_wreg_fn_t wreg = ((osl_pubinfo_t *) osh)->wreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_wreg_fn_t wreg = ((struct osl_pubinfo *) osh)->wreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
((wreg) (ctx, (void *)r, v, sizeof(u16)));
}
void osl_writel(osl_t *osh, volatile u32 *r, u32 v)
{
- osl_wreg_fn_t wreg = ((osl_pubinfo_t *) osh)->wreg_fn;
- void *ctx = ((osl_pubinfo_t *) osh)->reg_ctx;
+ osl_wreg_fn_t wreg = ((struct osl_pubinfo *) osh)->wreg_fn;
+ void *ctx = ((struct osl_pubinfo *) osh)->reg_ctx;
((wreg) (ctx, (void *)r, v, sizeof(u32)));
}