Commit c31106b7 authored by Zhouyang Jia's avatar Zhouyang Jia Committed by Boris Brezillon
Browse files

mtd: maps: gpio-addr-flash: add error handling for ioremap_nocache



When ioremap_nocache fails, the lack of error-handling code may
cause unexpected results.

This patch adds error-handling code after calling ioremap_nocache.

Signed-off-by: default avatarZhouyang Jia <jiazhouyang09@gmail.com>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@bootlin.com>
parent 7a1f1b59
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -239,6 +239,9 @@ static int gpio_flash_probe(struct platform_device *pdev)
	state->map.bankwidth  = pdata->width;
	state->map.size       = state->win_size * (1 << state->gpio_count);
	state->map.virt       = ioremap_nocache(memory->start, state->map.size);
	if (!state->map.virt)
		return -ENOMEM;

	state->map.phys       = NO_XIP;
	state->map.map_priv_1 = (unsigned long)state;