Commit cc4b859c70e49d6a3e208c930e9eb81bea4481fd

Authored by Paul Gortmaker
1 parent 143cb494cb

acpi: add module.h to files implicitly using/relying on it.

These files are using standard module API things like MODULE_AUTHOR
etc. and so should not be relying on an implicit presence of the
module.h header.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

Showing 3 changed files with 3 additions and 0 deletions Side-by-side Diff

drivers/acpi/acpica/hwsleep.c
... ... @@ -46,6 +46,7 @@
46 46 #include "accommon.h"
47 47 #include "actables.h"
48 48 #include <linux/tboot.h>
  49 +#include <linux/module.h>
49 50  
50 51 #define _COMPONENT ACPI_HARDWARE
51 52 ACPI_MODULE_NAME("hwsleep")
drivers/acpi/ec_sys.c
... ... @@ -11,6 +11,7 @@
11 11 #include <linux/kernel.h>
12 12 #include <linux/acpi.h>
13 13 #include <linux/debugfs.h>
  14 +#include <linux/module.h>
14 15 #include "internal.h"
15 16  
16 17 MODULE_AUTHOR("Thomas Renninger <trenn@suse.de>");
drivers/acpi/sbshc.c
... ... @@ -13,6 +13,7 @@
13 13 #include <linux/wait.h>
14 14 #include <linux/slab.h>
15 15 #include <linux/delay.h>
  16 +#include <linux/module.h>
16 17 #include <linux/interrupt.h>
17 18 #include "sbshc.h"
18 19