hc
2024-05-10 23fa18eaa71266feff7ba8d83022d9e1cc83c65a
kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/include/linux_osl.h
old mode 100644new mode 100755
....@@ -28,14 +28,10 @@
2828 #define DECLSPEC_ALIGN(x) __attribute__ ((aligned(x)))
2929
3030 /* Linux Kernel: File Operations: start */
31
-static INLINE void * osl_os_open_image(char * filename)
32
- { return NULL; }
33
-static INLINE void osl_os_close_image(void * image)
34
- { return; }
35
-static INLINE int osl_os_get_image_block(char * buf, int len, void * image)
36
- { return 0; }
37
-static INLINE int osl_os_image_size(void *image)
38
- { return 0; }
31
+extern void * osl_os_open_image(char * filename);
32
+extern int osl_os_get_image_block(char * buf, int len, void * image);
33
+extern void osl_os_close_image(void * image);
34
+extern int osl_os_image_size(void *image);
3935 /* Linux Kernel: File Operations: end */
4036
4137 #ifdef BCMDRIVER