Commit 683ab518 authored by Brett Rudley's avatar Brett Rudley Committed by Greg Kroah-Hartman

staging: brcm80211: Remove dead code from osl.h

Signed-off-by: default avatarBrett Rudley <brudley@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 8fb6b188
...@@ -18,12 +18,6 @@ ...@@ -18,12 +18,6 @@
#define _linux_osl_h_ #define _linux_osl_h_
/* Linux Kernel: File Operations: start */
extern void *osl_os_open_image(char *filename);
extern int osl_os_get_image_block(char *buf, int len, void *image);
extern void osl_os_close_image(void *image);
/* Linux Kernel: File Operations: end */
extern osl_t *osl_attach(void *pdev, uint bustype, bool pkttag); extern osl_t *osl_attach(void *pdev, uint bustype, bool pkttag);
extern void osl_detach(osl_t *osh); extern void osl_detach(osl_t *osh);
...@@ -269,22 +263,6 @@ extern int osl_error(int bcmerror); ...@@ -269,22 +263,6 @@ extern int osl_error(int bcmerror);
#define OSL_CACHED(va) ((void *)va) #define OSL_CACHED(va) ((void *)va)
#endif /* mips */ #endif /* mips */
#if defined(mips)
#define OSL_GETCYCLES(x) ((x) = read_c0_count() * 2)
#elif defined(__i386__)
#define OSL_GETCYCLES(x) rdtscl((x))
#else
#define OSL_GETCYCLES(x) ((x) = 0)
#endif /* defined(mips) */
/* dereference an address that may cause a bus exception */
#ifdef mips
#define BUSPROBE(val, addr) get_dbe((val), (addr))
#include <asm/paccess.h>
#else
#define BUSPROBE(val, addr) ({ (val) = R_REG(NULL, (addr)); 0; })
#endif /* mips */
/* map/unmap physical to virtual I/O */ /* map/unmap physical to virtual I/O */
#if !defined(CONFIG_MMC_MSM7X00A) #if !defined(CONFIG_MMC_MSM7X00A)
#define REG_MAP(pa, size) ioremap_nocache((unsigned long)(pa), (unsigned long)(size)) #define REG_MAP(pa, size) ioremap_nocache((unsigned long)(pa), (unsigned long)(size))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment