]> asedeno.scripts.mit.edu Git - linux.git/commit
scsi: sd: Remove a useless comparison
authorBart Van Assche <bart.vanassche@wdc.com>
Fri, 25 Aug 2017 20:46:35 +0000 (13:46 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 25 Aug 2017 21:08:08 +0000 (17:08 -0400)
commit830cc351bc3c7f867daf92f17992bca34a647d8c
treebd678a8a902c6c113e5202ad01dd2c1fa9eaf433
parented91f7ed38a57df422590b0250ae9ab678197777
scsi: sd: Remove a useless comparison

This patch avoids that gcc reports the following warning when
building with W=1:

drivers/scsi/sd.c:315:10: warning: comparison of unsigned expression >= 0 is always true [-Wtype-limits]
  if (val >= 0 && val <= T10_PI_TYPE3_PROTECTION)

Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/sd.c