Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b703da16 authored by Xie Shaowen's avatar Xie Shaowen Committed by Greg Kroah-Hartman
Browse files

macintosh/macio-adb: check the return value of ioremap()



[ Upstream commit dbaa3105736d4d73063ea0a3b01cd7fafce924e6 ]

The function ioremap() in macio_init() can fail, so its return value
should be checked.

Fixes: 36874579 ("[PATCH] powerpc: macio-adb build fix")
Reported-by: default avatarHacash Robot <hacashRobot@santino.com>
Signed-off-by: default avatarXie Shaowen <studentxswpy@163.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20220802074148.3213659-1-studentxswpy@163.com


Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent b29a2f1d
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -106,6 +106,10 @@ int macio_init(void)
		return -ENXIO;
	}
	adb = ioremap(r.start, sizeof(struct adb_regs));
	if (!adb) {
		of_node_put(adbs);
		return -ENOMEM;
	}

	out_8(&adb->ctrl.r, 0);
	out_8(&adb->intr.r, 0);