mtd: spi-nor: cast to u64 to avoid uint overflows
authorhuijin.park <huijin.park@samsung.com>
Wed, 28 Nov 2018 08:02:14 +0000 (03:02 -0500)
committerBoris Brezillon <boris.brezillon@bootlin.com>
Mon, 10 Dec 2018 20:59:07 +0000 (21:59 +0100)
commit84a1c2109d23df3543d96231c4fee1757299bb1a
treee025f78f761dd94e0a503ab52437e1c4b6f9b65d
parent4cc106f8f245bae0c458224804733240cb22394d
mtd: spi-nor: cast to u64 to avoid uint overflows

The "params->size" is defined as "u64".
And "info->sector_size" and "info->n_sectors" are defined as
unsigned int and u16.
Thus, u64 data might have strange data(loss data) if the result
overflows an unsigned int.
This patch casts "info->sector_size" to an u64.

Signed-off-by: huijin.park <huijin.park@samsung.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
drivers/mtd/spi-nor/spi-nor.c