diff options
author | Christoph Hellwig | 2018-11-09 14:48:58 +0100 |
---|---|---|
committer | Jens Axboe | 2018-11-09 08:39:21 -0700 |
commit | 643b5f68d0f9b5a269ebbcc9f0e6c658b41b864e (patch) | |
tree | ab213bd05dbe50d87a2b4a58bafca028c963b347 /drivers/block | |
parent | 449a15d9e49a566a38481e51a21360c7d91a9c77 (diff) |
mtip32xx: add missing endianess annotations on struct smart_attr
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/mtip32xx/mtip32xx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/mtip32xx/mtip32xx.h b/drivers/block/mtip32xx/mtip32xx.h index 0aa1ea210822..e8b4b3d5365a 100644 --- a/drivers/block/mtip32xx/mtip32xx.h +++ b/drivers/block/mtip32xx/mtip32xx.h @@ -172,10 +172,10 @@ enum { struct smart_attr { u8 attr_id; - u16 flags; + __le16 flags; u8 cur; u8 worst; - u32 data; + __le32 data; u8 res[3]; } __packed; |