block: sed-opal: fix sparse warning: convert __be64 data
authorRandy Dunlap <rdunlap@infradead.org>
Thu, 3 Oct 2019 02:23:15 +0000 (19:23 -0700)
committerJens Axboe <axboe@kernel.dk>
Thu, 3 Oct 2019 20:21:32 +0000 (14:21 -0600)
commita9eb49c964884654dd6394cb6abe7ceb021c9c96
treeffc078bf0a06584d51307219367ba3be641eaeae
parentdc301025658aef326763765b0bebeaa44569ed20
block: sed-opal: fix sparse warning: convert __be64 data

sparse warns about incorrect type when using __be64 data.
It is not being converted to CPU-endian but it should be.

Fixes these sparse warnings:

../block/sed-opal.c:375:20: warning: incorrect type in assignment (different base types)
../block/sed-opal.c:375:20:    expected unsigned long long [usertype] align
../block/sed-opal.c:375:20:    got restricted __be64 const [usertype] alignment_granularity
../block/sed-opal.c:376:25: warning: incorrect type in assignment (different base types)
../block/sed-opal.c:376:25:    expected unsigned long long [usertype] lowest_lba
../block/sed-opal.c:376:25:    got restricted __be64 const [usertype] lowest_aligned_lba

Fixes: 455a7b238cd6 ("block: Add Sed-opal library")
Cc: Scott Bauer <scott.bauer@intel.com>
Cc: Rafael Antognolli <rafael.antognolli@intel.com>
Cc: linux-block@vger.kernel.org
Reviewed-by: Jon Derrick <jonathan.derrick@intel.com>
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/sed-opal.c