Changeset 1754

Show
Ignore:
Timestamp:
10/17/06 19:02:28 (2 years ago)
Author:
proski
Message:

Allow root to see and modify ath_pci module parameters

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ath/if_ath.c

    r1752 r1754  
    290290#else 
    291291#include <linux/moduleparam.h> 
    292 module_param(countrycode, int, 0); 
    293 module_param(outdoor, int, 0); 
    294 module_param(xchanmode, int, 0); 
    295 module_param(rfkill, int, 0); 
    296 module_param(autocreate, charp, 0); 
     292module_param(countrycode, int, 0600); 
     293module_param(outdoor, int, 0600); 
     294module_param(xchanmode, int, 0600); 
     295module_param(rfkill, int, 0600); 
     296module_param(autocreate, charp, 0600); 
    297297#endif 
    298298MODULE_PARM_DESC(countrycode, "Override default country code"); 
     
    307307MODULE_PARM(ath_debug, "i"); 
    308308#else 
    309 module_param(ath_debug, int, 0); 
     309module_param(ath_debug, int, 0600); 
    310310#endif 
    311311MODULE_PARM_DESC(ath_debug, "Load-time debug output enable");