mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-16 01:24:08 +08:00
media: serial_ir: use the right type for a dma address
As warned by smatch: drivers/media/rc/serial_ir.c:550 serial_ir_probe() warn: should '8 << ioshift' be a 64 bit type? the "8" constant should be unsigned long. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
3f83aa6b4b
commit
73c016543d
@ -547,7 +547,7 @@ static int serial_ir_probe(struct platform_device *dev)
|
||||
|
||||
/* Reserve io region. */
|
||||
if ((iommap &&
|
||||
(devm_request_mem_region(&dev->dev, iommap, 8 << ioshift,
|
||||
(devm_request_mem_region(&dev->dev, iommap, 8UL << ioshift,
|
||||
KBUILD_MODNAME) == NULL)) ||
|
||||
(!iommap && (devm_request_region(&dev->dev, io, 8,
|
||||
KBUILD_MODNAME) == NULL))) {
|
||||
|
Loading…
Reference in New Issue
Block a user