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)
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>

No differences found