02-linux_2_4_module_param.patch 793 B

12345678910111213141516171819202122
  1. --- rt61-old/Module/rtmp_main.c 2006/06/16 11:12:40 1.14
  2. +++ rt61-new/Module/rtmp_main.c 2006/08/12 13:03:25 1.15
  3. @@ -48,11 +48,19 @@
  4. // Global variable, debug level flag
  5. // Don't hide this behing debug define. There should be as little difference between debug and no-debug as possible.
  6. int debug = 0;
  7. +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
  8. module_param(debug, int, 0444);
  9. +#else
  10. +MODULE_PARM(debug, "i");
  11. +#endif
  12. MODULE_PARM_DESC(debug, "Enable level: accepted values: 1 to switch debug on, 0 to switch debug off.");
  13. static char *ifname = NULL ;
  14. +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
  15. module_param(ifname, charp, 0444);
  16. +#else
  17. +MODULE_PARM(ifname, "s");
  18. +#endif
  19. MODULE_PARM_DESC(ifname, "Network device name (default ra%d)");
  20. static dma_addr_t dma_adapter;