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/wd.c | |
parent | 66ef5ea9b0984110eb62f46c40932d49707f89bb (diff) | |
download | talos-obmc-linux-47a73801f498883ea3acccb8f6ff1b5c7a3553de.tar.gz talos-obmc-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/wd.c')
-rw-r--r-- | drivers/misc/mei/wd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/mei/wd.c b/drivers/misc/mei/wd.c index 9d4d4aa0f0e8..9c3738a4eb08 100644 --- a/drivers/misc/mei/wd.c +++ b/drivers/misc/mei/wd.c @@ -21,10 +21,10 @@ #include <linux/sched.h> #include <linux/watchdog.h> +#include <linux/mei.h> + #include "mei_dev.h" -#include "hw.h" #include "interface.h" -#include <linux/mei.h> static const u8 mei_start_wd_params[] = { 0x02, 0x12, 0x13, 0x10 }; static const u8 mei_stop_wd_params[] = { 0x02, 0x02, 0x14, 0x10 }; |