mtip32xx: add missing endianess annotations on struct smart_attr
authorChristoph Hellwig <hch@lst.de>
Fri, 9 Nov 2018 13:48:58 +0000 (14:48 +0100)
committerJens Axboe <axboe@kernel.dk>
Fri, 9 Nov 2018 15:39:21 +0000 (08:39 -0700)
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/mtip32xx/mtip32xx.h

index 0aa1ea2..e8b4b3d 100644 (file)
@@ -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;