Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ash-4.2# make
- KBUILD_NOPEDANTIC=1 make -C /lib/modules/`uname -r`/build M=`pwd`
- make[1]: Entering directory `/usr/src/linux-3.10.17'
- CFG80211 API is prefered for this kernel version
- Using CFG80211 API
- CC [M] /root/Desktop/src/wl/sys/wl_linux.o
- /root/Desktop/src/wl/sys/wl_linux.c: In function 'wl_tkip_printstats':
- /root/Desktop/src/wl/sys/wl_linux.c:3246:7: warning: passing argument 1 of 'wl->tkipmodops->print_stats' from incompatible pointer type [enabled by default]
- wl->tkip_bcast_data[idx]);
- ^
- /root/Desktop/src/wl/sys/wl_linux.c:3246:7: note: expected 'struct seq_file *' but argument is of type 'char *'
- /root/Desktop/src/wl/sys/wl_linux.c:3249:4: warning: passing argument 1 of 'wl->tkipmodops->print_stats' from incompatible pointer type [enabled by default]
- wl->tkipmodops->print_stats(debug_buf, wl->tkip_ucast_data);
- ^
- /root/Desktop/src/wl/sys/wl_linux.c:3249:4: note: expected 'struct seq_file *' but argument is of type 'char *'
- /root/Desktop/src/wl/sys/wl_linux.c: In function 'wl_reg_proc_entry':
- /root/Desktop/src/wl/sys/wl_linux.c:3470:2: error: implicit declaration of function 'create_proc_entry' [-Werror=implicit-function-declaration]
- if ((wl->proc_entry = create_proc_entry(tmp, 0644, NULL)) == NULL) {
- ^
- /root/Desktop/src/wl/sys/wl_linux.c:3470:22: warning: assignment makes pointer from integer without a cast [enabled by default]
- if ((wl->proc_entry = create_proc_entry(tmp, 0644, NULL)) == NULL) {
- ^
- /root/Desktop/src/wl/sys/wl_linux.c:3475:16: error: dereferencing pointer to incomplete type
- wl->proc_entry->read_proc = wl_proc_read;
- ^
- /root/Desktop/src/wl/sys/wl_linux.c:3476:16: error: dereferencing pointer to incomplete type
- wl->proc_entry->write_proc = wl_proc_write;
- ^
- /root/Desktop/src/wl/sys/wl_linux.c:3477:16: error: dereferencing pointer to incomplete type
- wl->proc_entry->data = wl;
- ^
- cc1: some warnings being treated as errors
- make[2]: *** [/root/Desktop/src/wl/sys/wl_linux.o] Error 1
- make[1]: *** [_module_/root/Desktop] Error 2
- make[1]: Leaving directory `/usr/src/linux-3.10.17'
- make: *** [all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement