diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-10-12 15:00:08 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-10-14 14:14:36 -0700 |
commit | 6af783c8ba3418a8ffc50f1266d9b1e35a3322db (patch) | |
tree | d2a00a324f03faef3287a64108213ecc369dfbc9 /drivers | |
parent | 8037cdade734383a8b2ef501e6d39645f8954073 (diff) | |
download | op-kernel-dev-6af783c8ba3418a8ffc50f1266d9b1e35a3322db.zip op-kernel-dev-6af783c8ba3418a8ffc50f1266d9b1e35a3322db.tar.gz |
Staging: vme: fix sched.h build breakage
commit d43c36dc removed sched.h from interrupt.h. This broke the
vme drivers. This patch fixes them.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/vme/bridges/vme_ca91cx42.c | 1 | ||||
-rw-r--r-- | drivers/staging/vme/bridges/vme_tsi148.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/vme/bridges/vme_ca91cx42.c b/drivers/staging/vme/bridges/vme_ca91cx42.c index 3d2a84c..e139eae 100644 --- a/drivers/staging/vme/bridges/vme_ca91cx42.c +++ b/drivers/staging/vme/bridges/vme_ca91cx42.c @@ -25,6 +25,7 @@ #include <linux/poll.h> #include <linux/interrupt.h> #include <linux/spinlock.h> +#include <linux/sched.h> #include <asm/time.h> #include <asm/io.h> #include <asm/uaccess.h> diff --git a/drivers/staging/vme/bridges/vme_tsi148.c b/drivers/staging/vme/bridges/vme_tsi148.c index 8960fa9..00fe080 100644 --- a/drivers/staging/vme/bridges/vme_tsi148.c +++ b/drivers/staging/vme/bridges/vme_tsi148.c @@ -25,6 +25,7 @@ #include <linux/dma-mapping.h> #include <linux/interrupt.h> #include <linux/spinlock.h> +#include <linux/sched.h> #include <asm/time.h> #include <asm/io.h> #include <asm/uaccess.h> |