diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2014-09-29 15:31:46 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-29 17:56:02 +0200 |
commit | 1f180359f42fc6fda4600175c63f2a84f444cc92 (patch) | |
tree | d29153ac76f577a3b7e10a3b9996f6fbbaa587bf /drivers/misc/mei/amthif.c | |
parent | mei: push pci cfg structure me hw (diff) | |
download | linux-1f180359f42fc6fda4600175c63f2a84f444cc92.tar.xz linux-1f180359f42fc6fda4600175c63f2a84f444cc92.zip |
mei: remove include to pci header from mei module files
Remove inclusion of linux/pci.h in mei layer
however we need to include the headers that before
got included implicitly from linux/pci.h.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mei/amthif.c')
-rw-r--r-- | drivers/misc/mei/amthif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/mei/amthif.c b/drivers/misc/mei/amthif.c index 5d47d1b36ccf..d9b0e761fcd2 100644 --- a/drivers/misc/mei/amthif.c +++ b/drivers/misc/mei/amthif.c @@ -20,7 +20,6 @@ #include <linux/types.h> #include <linux/fcntl.h> #include <linux/aio.h> -#include <linux/pci.h> #include <linux/ioctl.h> #include <linux/cdev.h> #include <linux/list.h> @@ -29,6 +28,7 @@ #include <linux/uuid.h> #include <linux/jiffies.h> #include <linux/uaccess.h> +#include <linux/slab.h> #include <linux/mei.h> |