From: Dan Carpenter Date: Wed, 17 Apr 2013 07:19:05 +0000 (+0300) Subject: [SCSI] libosd: remover duplicate __bitwise annotation X-Git-Tag: rel_imx_4.19.35_1.1.0~21381^2~1^2~57 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=631d706e684e6187dbbc3cce3ee301d5b53648a8;p=linux.git [SCSI] libosd: remover duplicate __bitwise annotation __be32 is already a __bitwise type so we don't need the second __bitwise here. It causes a Sparse error: include/scsi/osd_protocol.h:110:26: error: invalid modifier Signed-off-by: Dan Carpenter Acked-by: Benny Halevy Signed-off-by: James Bottomley --- diff --git a/include/scsi/osd_protocol.h b/include/scsi/osd_protocol.h index a6026da25f3e..25ac6283b9c7 100644 --- a/include/scsi/osd_protocol.h +++ b/include/scsi/osd_protocol.h @@ -107,7 +107,7 @@ enum osd_attributes_mode { * int exponent: 04; * } */ -typedef __be32 __bitwise osd_cdb_offset; +typedef __be32 osd_cdb_offset; enum { OSD_OFFSET_UNUSED = 0xFFFFFFFF,