Skip to content

Commit

Permalink
include/scsi/osd_protocol.h: remove unnecessary __constant
Browse files Browse the repository at this point in the history
__constant_cpu_to_be16 converted to cpu_to_be16

This patch fixes checkpatch warnings:

"WARNING: __constant_cpu_to_be16 should be cpu_to_be16"

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Ack-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
  • Loading branch information
Fabian Frederick authored and Christoph Hellwig committed Jun 2, 2014
1 parent 2a863ba commit 63ff059
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/scsi/osd_protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -263,16 +263,16 @@ static inline struct osd_cdb_head *osd_cdb_head(struct osd_cdb *ocdb)
* Ex name = FORMAT_OSD we have OSD_ACT_FORMAT_OSD && OSDv1_ACT_FORMAT_OSD
*/
#define OSD_ACT___(Name, Num) \
OSD_ACT_##Name = __constant_cpu_to_be16(0x8880 + Num), \
OSDv1_ACT_##Name = __constant_cpu_to_be16(0x8800 + Num),
OSD_ACT_##Name = cpu_to_be16(0x8880 + Num), \
OSDv1_ACT_##Name = cpu_to_be16(0x8800 + Num),

/* V2 only actions */
#define OSD_ACT_V2(Name, Num) \
OSD_ACT_##Name = __constant_cpu_to_be16(0x8880 + Num),
OSD_ACT_##Name = cpu_to_be16(0x8880 + Num),

#define OSD_ACT_V1_V2(Name, Num1, Num2) \
OSD_ACT_##Name = __constant_cpu_to_be16(Num2), \
OSDv1_ACT_##Name = __constant_cpu_to_be16(Num1),
OSD_ACT_##Name = cpu_to_be16(Num2), \
OSDv1_ACT_##Name = cpu_to_be16(Num1),

enum osd_service_actions {
OSD_ACT_V2(OBJECT_STRUCTURE_CHECK, 0x00)
Expand Down

0 comments on commit 63ff059

Please sign in to comment.