Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb12a679 authored by Paul Gortmaker's avatar Paul Gortmaker
Browse files

drivers/misc: Add module.h to files who are really modular.



These files really need the full module.h header file present, but
were just getting it implicitly before.  Fix it up in advance so we
avoid build failures once the cleanup commit is present.

Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent 314ef9cb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
#include <linux/pwm.h>
#include <linux/mfd/ab8500.h>
#include <linux/mfd/abx500.h>
#include <linux/module.h>

/*
 * PWM Out generators
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
#include <linux/spinlock.h>
#include <linux/atmel-ssc.h>
#include <linux/slab.h>
#include <linux/module.h>

/* Serialize access to ssc_list and user count */
static DEFINE_SPINLOCK(user_lock);
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@
#include <linux/mutex.h>
#include <linux/platform_device.h>
#include <linux/delay.h>
#include <linux/module.h>

#define BH1780_REG_CONTROL	0x80
#define BH1780_REG_PARTID	0x8A
+1 −0
Original line number Diff line number Diff line
@@ -102,6 +102,7 @@
#include <linux/nmi.h>
#include <linux/delay.h>
#include <linux/kthread.h>
#include <linux/module.h>

#define v1printk(a...) do { \
	if (verbose) \
+1 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@

#include <linux/skbuff.h>
#include <linux/ti_wilink_st.h>
#include <linux/module.h>


#define MAX_ST_DEVICES	3	/* Imagine 1 on each UART for now */
Loading