]> git.baikalelectronics.ru Git - kernel.git/commit
wimax/i2400m: Move module params to other file so they can be static
authorPrasanna S Panchamukhi <prasannax.s.panchamukhi@intel.com>
Wed, 18 Nov 2009 02:29:35 +0000 (18:29 -0800)
committerInaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Tue, 11 May 2010 21:10:24 +0000 (14:10 -0700)
commit2ed44aaa37b0dce472997860edf2c30fc4450efd
tree0b3b3573308ce69bedd3f9005a714d7c7bab9d48
parent8f4aaf01c8676b34d719d9c4585cc7431606283a
wimax/i2400m: Move module params to other file so they can be static

This patch moves the module parameters to the file where they
can be avoided to be global and allow them to be static.

The module param : idle_mode_disabled and power_save_disabled
are moved from  driver.c to control.c. Also these module parameters
are declared to be static as they are not required to be global anymore.
The module param : rx_reorder_disabled is moved from driver.c file to
rx.c file. Also this parameter is declated as static as it is not
required to be global anymore.

Signed-off-by: Prasanna S Panchamukhi<prasannax.s.panchamukhi@intel.com>
drivers/net/wimax/i2400m/control.c
drivers/net/wimax/i2400m/driver.c
drivers/net/wimax/i2400m/i2400m.h
drivers/net/wimax/i2400m/rx.c