diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2013-12-17 08:56:56 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-18 19:39:54 -0500 |
commit | 479327fc42737234a1f76f20010334c99110d256 (patch) | |
tree | ff11f80c65c5adf775d8f7277f776b16e05c1c42 /drivers/misc/mei/hw.h | |
parent | 725fc136432552231f7076fd09e6b57a100de1f8 (diff) |
mei: enable marking internal commands
Set hbm header bit 30 for internal commands
This mark commands that are generated by
the device driver
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mei/hw.h')
-rw-r--r-- | drivers/misc/mei/hw.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/mei/hw.h b/drivers/misc/mei/hw.h index cb2f556b4252..dd44e33ad2b6 100644 --- a/drivers/misc/mei/hw.h +++ b/drivers/misc/mei/hw.h | |||
@@ -111,7 +111,8 @@ struct mei_msg_hdr { | |||
111 | u32 me_addr:8; | 111 | u32 me_addr:8; |
112 | u32 host_addr:8; | 112 | u32 host_addr:8; |
113 | u32 length:9; | 113 | u32 length:9; |
114 | u32 reserved:6; | 114 | u32 reserved:5; |
115 | u32 internal:1; | ||
115 | u32 msg_complete:1; | 116 | u32 msg_complete:1; |
116 | } __packed; | 117 | } __packed; |
117 | 118 | ||