diff options
author | Navya Sri Nizamkari <navyasri.tech@gmail.com> | 2015-03-02 00:40:18 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-01 17:09:52 -0800 |
commit | 0b5c85e0f4f5687a6868e743cb51de3897ab96c0 (patch) | |
tree | 385b75f9c939d47fdc9e9bf31a34583532a4f751 /drivers/staging/vme | |
parent | e2602b2eae6dcd3215eceaeeef0d368310b7cc15 (diff) | |
download | blackbird-op-linux-0b5c85e0f4f5687a6868e743cb51de3897ab96c0.tar.gz blackbird-op-linux-0b5c85e0f4f5687a6868e743cb51de3897ab96c0.zip |
staging: Remove <linux/moduleparam.h> header.
This patch drops #include <linux/moduleparam.h> in all the staging
driver files that also include #include <linux/module.h> as
module.h includes moduleparam.h already.
The following semantic patch is used to make these changes:
@ includesmodule @
@@
@ depends on includesmodule @
@@
- #include <linux/moduleparam.h>
Signed-off-by: Navya Sri Nizamkari <navyasri.tech@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vme')
-rw-r--r-- | drivers/staging/vme/devices/vme_pio2_core.c | 1 | ||||
-rw-r--r-- | drivers/staging/vme/devices/vme_pio2_gpio.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/vme/devices/vme_pio2_core.c b/drivers/staging/vme/devices/vme_pio2_core.c index 84c5a07e8f6a..eabbcc710a20 100644 --- a/drivers/staging/vme/devices/vme_pio2_core.c +++ b/drivers/staging/vme/devices/vme_pio2_core.c @@ -13,7 +13,6 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/module.h> -#include <linux/moduleparam.h> #include <linux/types.h> #include <linux/kernel.h> #include <linux/errno.h> diff --git a/drivers/staging/vme/devices/vme_pio2_gpio.c b/drivers/staging/vme/devices/vme_pio2_gpio.c index da34d5529f51..77901b345a71 100644 --- a/drivers/staging/vme/devices/vme_pio2_gpio.c +++ b/drivers/staging/vme/devices/vme_pio2_gpio.c @@ -11,7 +11,6 @@ */ #include <linux/module.h> -#include <linux/moduleparam.h> #include <linux/types.h> #include <linux/kernel.h> #include <linux/errno.h> |