summaryrefslogtreecommitdiffstats
path: root/drivers/staging/brcm80211/util
diff options
context:
space:
mode:
authorBrett Rudley2010-11-19 23:30:58 +0100
committerGreg Kroah-Hartman2010-11-20 02:09:13 +0100
commit861f67031899b8ab909d672eaea85070317855c9 (patch)
treeb65f548145114c36c88dbea369fba07bca6d85a1 /drivers/staging/brcm80211/util
parentstaging: brcm80211: unifdef -UBCMSDIO (diff)
downloadkernel-qcow2-linux-861f67031899b8ab909d672eaea85070317855c9.tar.gz
kernel-qcow2-linux-861f67031899b8ab909d672eaea85070317855c9.tar.xz
kernel-qcow2-linux-861f67031899b8ab909d672eaea85070317855c9.zip
staging: brcm80211: stragglers not handled by unifdef
Part of BMAC removal. 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.c49
1 files changed, 0 insertions, 49 deletions
diff --git a/drivers/staging/brcm80211/util/linux_osl.c b/drivers/staging/brcm80211/util/linux_osl.c
index e6e52f660780..a07eada14d08 100644
--- a/drivers/staging/brcm80211/util/linux_osl.c
+++ b/drivers/staging/brcm80211/util/linux_osl.c
@@ -246,52 +246,3 @@ void osl_assert(char *exp, char *file, int line)
}
#endif /* defined(BCMDBG_ASSERT) */
-#if defined(BCMSDIO) && !defined(BRCM_FULLMAC)
-u8 osl_readb(struct osl_info *osh, volatile u8 *r)
-{
- 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(struct osl_info *osh, volatile u16 *r)
-{
- 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(struct osl_info *osh, volatile u32 *r)
-{
- 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(struct osl_info *osh, volatile u8 *r, u8 v)
-{
- 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(struct osl_info *osh, volatile u16 *r, u16 v)
-{
- 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(struct osl_info *osh, volatile u32 *r, u32 v)
-{
- 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)));
-}
-#endif /* BCMSDIO */