diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2013-04-17 10:19:05 +0300 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-05-02 12:15:10 -0700 |
commit | 631d706e684e6187dbbc3cce3ee301d5b53648a8 (patch) | |
tree | 730cff7102e6ea2043a2520ce4479c0190745611 /include/scsi | |
parent | c64e483ea0a1d7483a5c1ac42ccdf7788eb3ce90 (diff) | |
download | linux-631d706e684e6187dbbc3cce3ee301d5b53648a8.tar.bz2 |
[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 <dan.carpenter@oracle.com>
Acked-by: Benny Halevy <bhalevy@tonian.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/osd_protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
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, |