06 Mar, 2013
1 commit
-
'rfkill_regulator_ops' is used only in this file. Hence make it static.
Silences the following warning:
net/rfkill/rfkill-regulator.c:54:19: warning:
symbol 'rfkill_regulator_ops' was not declared. Should it be static?Signed-off-by: Sachin Kamat
Signed-off-by: Johannes Berg
07 Dec, 2012
1 commit
-
CONFIG_HOTPLUG is going away as an option. As result the __dev*
markings will be going away.Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
and __devexit.Signed-off-by: Bill Pemberton
Cc: Johannes Berg
Signed-off-by: Greg Kroah-Hartman
Signed-off-by: John W. Linville
20 Dec, 2011
1 commit
-
DaveM said:
Please, this kind of stuff rots forever and not using bool properly
drives me crazy.Joe Perches gave me the spatch script:
@@
bool b;
@@
-b = 0
+b = false
@@
bool b;
@@
-b = 1
+b = trueI merely installed coccinelle, read the documentation and took credit.
Signed-off-by: Rusty Russell
Signed-off-by: David S. Miller
01 Dec, 2011
1 commit
-
This patch converts the drivers in net/rfkill/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.Cc: "David S. Miller"
Cc: "John W. Linville"
Cc: Johannes Berg
Cc: Antonio Ospite
Cc: Rhyland Klein
Signed-off-by: Axel Lin
Acked-by: Rhyland Klein
Signed-off-by: John W. Linville
14 Sep, 2011
1 commit
-
Removing unnecessary messages saves code and text.
Site specific OOM messages are duplications of a generic MM
out of memory message and aren't really useful, so just
delete them.Signed-off-by: Joe Perches
Signed-off-by: John W. Linville
20 Apr, 2011
1 commit
-
Add a regulator consumer driver for rfkill to enable controlling radio
transmitters connected to voltage regulators using the regulator
framework.A new "vrfkill" virtual supply is provided to use in platform code.
Signed-off-by: Guiming Zhuo
Signed-off-by: Antonio Ospite
Reviewed-by: Johannes Berg
Signed-off-by: John W. Linville