/data/ly/T113/i/program/8188/rtl8188eus-5.3.9/os_dep/linux/os_intfs.c: In function ‘rtw_os_ndev_register’: /data/ly/T113/i/program/8188/rtl8188eus-5.3.9/os_dep/linux/os_intfs.c:1641:5: error: implicit declaration of function ‘wiphy_net’ [-Werror=implicit-function-declaration] dev_net_set(ndev, wiphy_net(adapter_to_wiphy(adapter))); ^ In file included from /data/ly/T113/i/program/8188/rtl8188eus-5.3.9/os_dep/linux/os_intfs.c:17:0: /data/ly/T113/i/program/8188/rtl8188eus-5.3.9/include/drv_types.h:1602:45: error: ‘_adapter’ has no member named ‘wiphy’ #define adapter_to_wiphy(adapter) ((adapter)->wiphy) ^ /data/ly/T113/i/program/8188/rtl8188eus-5.3.9/os_dep/linux/os_intfs.c:1641:33: note: in expansion of macro ‘adapter_to_wiphy’ dev_net_set(ndev, wiphy_net(adapter_to_wiphy(adapter))); ^
时间: 2023-07-30 11:06:36 浏览: 361
T113-S3 光盘映像和设备驱动,烧写软件
这是一个编译错误,指出在文件 /data/ly/T113/i/program/8188/rtl8188eus-5.3.9/os_dep/linux/os_intfs.c 中的 rtw_os_ndev_register 函数中有一些问题。具体来说,该函数调用了一个未声明的函数 wiphy_net(),导致了编译错误。此外,该文件还有一个问题,即在 drv_types.h 文件中定义了一个宏 adapter_to_wiphy(),但在 os_intfs.c 文件中使用时,它引用了一个不存在的成员变量 adapter->wiphy。建议您检查这些问题并进行修复。
阅读全文