scsi: core: Fix -Wformat for scsi_host
authorNick Desaulniers <ndesaulniers@google.com>
Sat, 7 Nov 2020 08:11:32 +0000 (00:11 -0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 17 Nov 2020 03:33:59 +0000 (22:33 -0500)
commit883928201b00928df0b2000be37ee7a8e975be26
tree8cdfd532a3259cdda45c1a188eeb6ac895c6d411
parent16d6317ea438b10c5747f5d4a972ea0e68d1a6ae
scsi: core: Fix -Wformat for scsi_host

Clang is more aggressive about -Wformat warnings when the format flag
specifies a type smaller than the parameter. Turns out, struct Scsi_Host's
member can_queue is actually an int. Fixes:

[-Wformat]
shost_rd_attr(can_queue, "%hd\n");
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                          %d

Link: https://github.com/ClangBuiltLinux/linux/issues/378
Link: https://lore.kernel.org/r/20201107081132.2629071-1-ndesaulniers@google.com
Reviewed-by: Nathan Chancellor <natechancellor@gmail.com>
Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
warning: format specifies type 'short' but the argument has type 'int'
drivers/scsi/scsi_sysfs.c