Commit 643b5f68 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Jens Axboe

mtip32xx: add missing endianess annotations on struct smart_attr

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 449a15d9
...@@ -172,10 +172,10 @@ enum { ...@@ -172,10 +172,10 @@ enum {
struct smart_attr { struct smart_attr {
u8 attr_id; u8 attr_id;
u16 flags; __le16 flags;
u8 cur; u8 cur;
u8 worst; u8 worst;
u32 data; __le32 data;
u8 res[3]; u8 res[3];
} __packed; } __packed;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment