diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2012-12-25 19:06:03 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-07 10:31:28 -0800 |
commit | 47a73801f498883ea3acccb8f6ff1b5c7a3553de (patch) | |
tree | 2040bce23f8409f6d4cf046d6ba361f5c49131cf /drivers/misc/mei/main.c | |
parent | 66ef5ea9b0984110eb62f46c40932d49707f89bb (diff) |
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/main.c')
-rw-r--r-- | drivers/misc/mei/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/mei/main.c b/drivers/misc/mei/main.c index 7751b58540a..da942605481 100644 --- a/drivers/misc/mei/main.c +++ b/drivers/misc/mei/main.c @@ -37,8 +37,9 @@ #include <linux/interrupt.h> #include <linux/miscdevice.h> -#include "mei_dev.h" #include <linux/mei.h> + +#include "mei_dev.h" #include "interface.h" /* AMT device is a singleton on the platform */ |