diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2012-12-25 18:06:03 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-07 19:31:28 +0100 |
commit | 47a73801f498883ea3acccb8f6ff1b5c7a3553de (patch) | |
tree | 2040bce23f8409f6d4cf046d6ba361f5c49131cf /drivers/misc/mei/interrupt.c | |
parent | mei: extract device dependent constants into hw-me.h (diff) | |
download | linux-47a73801f498883ea3acccb8f6ff1b5c7a3553de.tar.xz linux-47a73801f498883ea3acccb8f6ff1b5c7a3553de.zip |
mei: include local headers after the system ones
first include linux/mei.h then only local headers
to avoid possible false dependencies
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mei/interrupt.c')
-rw-r--r-- | drivers/misc/mei/interrupt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/mei/interrupt.c b/drivers/misc/mei/interrupt.c index fe93d1c9c242..0a020ad92f00 100644 --- a/drivers/misc/mei/interrupt.c +++ b/drivers/misc/mei/interrupt.c @@ -21,9 +21,9 @@ #include <linux/fs.h> #include <linux/jiffies.h> -#include "mei_dev.h" #include <linux/mei.h> -#include "hw.h" + +#include "mei_dev.h" #include "interface.h" |