Jump to content

Ok here is my problem.

 

I have a edimax EW-7811UTC usb wireless adapter for my new gaming rig. I downloaded the driver off the edimax website and I am now trying to compile or make the driver.

 

However when I try and compile the driver with the make command i get this error.

/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/o s_intfs.c:1031:2: warning: (near initialization for ‘rtw_netdev_ops.ndo_select_q ueue’) [enabled by default]cc1: some warnings being treated as errorsmake[2]: *** [/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/ os_dep/linux/os_intfs.o] Error 1make[1]: *** [_module_/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.2 0130517] Error 2make[1]: Leaving directory `/usr/src/linux-headers-3.13.0-39-generic'make: *** [modules] Error 2

What is broken? is there a package i need? is there a line of code that needs to be changed? what is it?

 

Thank you in advance

 

Move along. Nothing to see here

Link to comment
https://linustechtips.com/topic/316594-linux-driver-stupidness/
Share on other sites

Link to post
Share on other sites

Thats the thing it doesn't work out of the box. openSUSE doesn't recognize the adapter.

 

If the USB adapter works out of the box you don't need drivers.

And to you sir, why not a linux gaming rig? all the games i play are on linux and its pretty amazing.

Gaming rig with linux? 

Am I missing something?

Dont know how to fix your problem tho.

Move along. Nothing to see here

Link to comment
https://linustechtips.com/topic/316594-linux-driver-stupidness/#findComment-4303071
Share on other sites

Link to post
Share on other sites

make ARCH=x86_64 CROSS_COMPILE= -C /lib/modules/3.13.0-39-generic/build M=/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517  modulesmake[1]: Entering directory `/usr/src/linux-headers-3.13.0-39-generic'  CC [M]  /home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.o/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c: In function ‘rtw_proc_init_one’:/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:352:3: error: implicit declaration of function ‘create_proc_entry’ [-Werror=implicit-function-declaration]   rtw_proc=create_proc_entry(rtw_proc_name, S_IFDIR, init_net.proc_net);   ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:352:11: warning: assignment makes pointer from integer without a cast [enabled by default]   rtw_proc=create_proc_entry(rtw_proc_name, S_IFDIR, init_net.proc_net);           ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:359:3: error: implicit declaration of function ‘create_proc_read_entry’ [-Werror=implicit-function-declaration]   entry = create_proc_read_entry("ver_info", S_IFREG | S_IRUGO, rtw_proc, proc_get_drv_version, dev);   ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:359:9: warning: assignment makes pointer from integer without a cast [enabled by default]   entry = create_proc_read_entry("ver_info", S_IFREG | S_IRUGO, rtw_proc, proc_get_drv_version, dev);         ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:370:21: warning: assignment makes pointer from integer without a cast [enabled by default]   padapter->dir_dev = create_proc_entry(dev->name,                     ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:401:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("write_reg", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:407:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_write_reg;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:409:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("read_reg", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:415:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_read_reg;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:418:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("fwstate", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:426:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("sec_info", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:434:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("mlmext_state", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:442:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("qos_option", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:449:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("ht_option", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:456:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rf_info", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:463:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("ap_info", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:470:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("adapter_state", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:477:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("trx_info", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:484:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("mac_reg_dump1", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:491:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("mac_reg_dump2", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:498:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("mac_reg_dump3", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:505:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("bb_reg_dump1", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:512:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("bb_reg_dump2", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:519:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("bb_reg_dump3", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:526:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rf_reg_dump1", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:533:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rf_reg_dump2", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:542:9: warning: assignment makes pointer from integer without a cast [enabled by default]   entry = create_proc_read_entry("rf_reg_dump3", S_IFREG | S_IRUGO,         ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:549:9: warning: assignment makes pointer from integer without a cast [enabled by default]   entry = create_proc_read_entry("rf_reg_dump4", S_IFREG | S_IRUGO,         ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:559:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("all_sta_info", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:577:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("best_channel", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:585:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rx_signal", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:591:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_rx_signal;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:593:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("ht_enable", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:599:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_ht_enable;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:601:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("bw_mode", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:607:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_bw_mode;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:609:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("ampdu_enable", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:615:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_ampdu_enable;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:617:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rx_stbc", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:623:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_rx_stbc;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:626:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("path_rssi", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:629:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rssi_disp", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:635:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_rssi_disp;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:647:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("sreset", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:653:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_sreset;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c: At top level:/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:1031:2: warning: initialization from incompatible pointer type [enabled by default]  .ndo_select_queue = rtw_select_queue,  ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:1031:2: warning: (near initialization for ‘rtw_netdev_ops.ndo_select_queue’) [enabled by default]cc1: some warnings being treated as errorsmake[2]: *** [/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.o] Error 1make[1]: *** [_module_/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517] Error 2make[1]: Leaving directory `/usr/src/linux-headers-3.13.0-39-generic'make: *** [modules] Error 2

That is the whole log

Move along. Nothing to see here

Link to comment
https://linustechtips.com/topic/316594-linux-driver-stupidness/#findComment-4303139
Share on other sites

Link to post
Share on other sites

Is that the whole output? the error says basically nothing of use.

 

Check if the command wrote to the logs, or go to ur manufacturer site and check the forums

 

If you got more output of the make post it here

 

make ARCH=x86_64 CROSS_COMPILE= -C /lib/modules/3.13.0-39-generic/build M=/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517  modulesmake[1]: Entering directory `/usr/src/linux-headers-3.13.0-39-generic'  CC [M]  /home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.o/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c: In function ‘rtw_proc_init_one’:/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:352:3: error: implicit declaration of function ‘create_proc_entry’ [-Werror=implicit-function-declaration]   rtw_proc=create_proc_entry(rtw_proc_name, S_IFDIR, init_net.proc_net);   ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:352:11: warning: assignment makes pointer from integer without a cast [enabled by default]   rtw_proc=create_proc_entry(rtw_proc_name, S_IFDIR, init_net.proc_net);           ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:359:3: error: implicit declaration of function ‘create_proc_read_entry’ [-Werror=implicit-function-declaration]   entry = create_proc_read_entry("ver_info", S_IFREG | S_IRUGO, rtw_proc, proc_get_drv_version, dev);   ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:359:9: warning: assignment makes pointer from integer without a cast [enabled by default]   entry = create_proc_read_entry("ver_info", S_IFREG | S_IRUGO, rtw_proc, proc_get_drv_version, dev);         ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:370:21: warning: assignment makes pointer from integer without a cast [enabled by default]   padapter->dir_dev = create_proc_entry(dev->name,                     ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:401:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("write_reg", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:407:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_write_reg;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:409:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("read_reg", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:415:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_read_reg;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:418:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("fwstate", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:426:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("sec_info", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:434:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("mlmext_state", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:442:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("qos_option", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:449:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("ht_option", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:456:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rf_info", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:463:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("ap_info", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:470:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("adapter_state", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:477:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("trx_info", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:484:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("mac_reg_dump1", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:491:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("mac_reg_dump2", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:498:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("mac_reg_dump3", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:505:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("bb_reg_dump1", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:512:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("bb_reg_dump2", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:519:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("bb_reg_dump3", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:526:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rf_reg_dump1", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:533:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rf_reg_dump2", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:542:9: warning: assignment makes pointer from integer without a cast [enabled by default]   entry = create_proc_read_entry("rf_reg_dump3", S_IFREG | S_IRUGO,         ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:549:9: warning: assignment makes pointer from integer without a cast [enabled by default]   entry = create_proc_read_entry("rf_reg_dump4", S_IFREG | S_IRUGO,         ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:559:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("all_sta_info", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:577:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("best_channel", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:585:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rx_signal", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:591:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_rx_signal;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:593:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("ht_enable", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:599:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_ht_enable;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:601:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("bw_mode", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:607:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_bw_mode;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:609:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("ampdu_enable", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:615:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_ampdu_enable;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:617:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rx_stbc", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:623:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_rx_stbc;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:626:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("path_rssi", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:629:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("rssi_disp", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:635:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_rssi_disp;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:647:8: warning: assignment makes pointer from integer without a cast [enabled by default]  entry = create_proc_read_entry("sreset", S_IFREG | S_IRUGO,        ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:653:7: error: dereferencing pointer to incomplete type  entry->write_proc = proc_set_sreset;       ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c: At top level:/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:1031:2: warning: initialization from incompatible pointer type [enabled by default]  .ndo_select_queue = rtw_select_queue,  ^/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.c:1031:2: warning: (near initialization for ‘rtw_netdev_ops.ndo_select_queue’) [enabled by default]cc1: some warnings being treated as errorsmake[2]: *** [/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517/os_dep/linux/os_intfs.o] Error 1make[1]: *** [_module_/home/preston/Desktop/rtl8812AU_8821AU_linux_v4.2.2_7502.20130517] Error 2make[1]: Leaving directory `/usr/src/linux-headers-3.13.0-39-generic'make: *** [modules] Error 2

That is the whole log

 

 

Move along. Nothing to see here

Link to comment
https://linustechtips.com/topic/316594-linux-driver-stupidness/#findComment-4303164
Share on other sites

Link to post
Share on other sites

   

hey, another linux guy here.... incase you are running 14.04 lts or above the recent update screwed me aswell non of my .run/.bin/.sh files are executing ..... also my usb 3.0 controlelr card kind crapped its pants.... you aint the only one .....

ok but i have had this problem on openSUSE and debian

Move along. Nothing to see here

Link to comment
https://linustechtips.com/topic/316594-linux-driver-stupidness/#findComment-4303199
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×