]> git.karo-electronics.de Git - karo-tx-linux.git/commit
pktcdvd: silence static checker warning
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 16 May 2013 08:11:08 +0000 (11:11 +0300)
committerJiri Kosina <jkosina@suse.cz>
Wed, 29 May 2013 13:36:22 +0000 (15:36 +0200)
commit104529661b645295903c5007ae632d2dd4029254
treeab4242f743136c1545ce1b336311c5c656ce4274
parentf722406faae2d073cc1d01063d1123c35425939e
pktcdvd: silence static checker warning

Static checkers complain about widening the binary "not" operations here
because sectors are u64 and "(pd)->settings.size" is unsigned int.
It unintentionally clears the high 32 bits of the sector.  This means
that the driver won't work for devices with over 2TB of space.  Since
this is a DVD drive, we're unlikely to reach that limit, but we may as
well silence the warning.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/block/pktcdvd.c