Advertisement
Guest User

Untitled

a guest
Mar 5th, 2014
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. ash-4.2# make
  2. KBUILD_NOPEDANTIC=1 make -C /lib/modules/`uname -r`/build M=`pwd`
  3. make[1]: Entering directory `/usr/src/linux-3.10.17'
  4. CFG80211 API is prefered for this kernel version
  5. Using CFG80211 API
  6. CC [M] /root/Desktop/src/wl/sys/wl_linux.o
  7. /root/Desktop/src/wl/sys/wl_linux.c: In function 'wl_tkip_printstats':
  8. /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]
  9. wl->tkip_bcast_data[idx]);
  10. ^
  11. /root/Desktop/src/wl/sys/wl_linux.c:3246:7: note: expected 'struct seq_file *' but argument is of type 'char *'
  12. /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]
  13. wl->tkipmodops->print_stats(debug_buf, wl->tkip_ucast_data);
  14. ^
  15. /root/Desktop/src/wl/sys/wl_linux.c:3249:4: note: expected 'struct seq_file *' but argument is of type 'char *'
  16. /root/Desktop/src/wl/sys/wl_linux.c: In function 'wl_reg_proc_entry':
  17. /root/Desktop/src/wl/sys/wl_linux.c:3470:2: error: implicit declaration of function 'create_proc_entry' [-Werror=implicit-function-declaration]
  18. if ((wl->proc_entry = create_proc_entry(tmp, 0644, NULL)) == NULL) {
  19. ^
  20. /root/Desktop/src/wl/sys/wl_linux.c:3470:22: warning: assignment makes pointer from integer without a cast [enabled by default]
  21. if ((wl->proc_entry = create_proc_entry(tmp, 0644, NULL)) == NULL) {
  22. ^
  23. /root/Desktop/src/wl/sys/wl_linux.c:3475:16: error: dereferencing pointer to incomplete type
  24. wl->proc_entry->read_proc = wl_proc_read;
  25. ^
  26. /root/Desktop/src/wl/sys/wl_linux.c:3476:16: error: dereferencing pointer to incomplete type
  27. wl->proc_entry->write_proc = wl_proc_write;
  28. ^
  29. /root/Desktop/src/wl/sys/wl_linux.c:3477:16: error: dereferencing pointer to incomplete type
  30. wl->proc_entry->data = wl;
  31. ^
  32. cc1: some warnings being treated as errors
  33. make[2]: *** [/root/Desktop/src/wl/sys/wl_linux.o] Error 1
  34. make[1]: *** [_module_/root/Desktop] Error 2
  35. make[1]: Leaving directory `/usr/src/linux-3.10.17'
  36. make: *** [all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement