]> git.baikalelectronics.ru Git - kernel.git/commit
sh: landisk: Add missing initialization of sh_io_port_base
authorGeert Uytterhoeven <geert+renesas@glider.be>
Fri, 14 Aug 2020 12:42:45 +0000 (14:42 +0200)
committerRich Felker <dalias@libc.org>
Sat, 15 Aug 2020 02:43:17 +0000 (22:43 -0400)
commit171b49e833f5cad70d5a7e6702b73b9808c398af
tree52213fbb5de00eeda62a9ebe65fbfe9c7c50c5e2
parent8b92abf3dd2e7b9fb92e44f8b8c59ed87f6a2faf
sh: landisk: Add missing initialization of sh_io_port_base

The Landisk setup code maps the CF IDE area using ioremap_prot(), and
passes the resulting virtual addresses to the pata_platform driver,
disguising them as I/O port addresses.  Hence the pata_platform driver
translates them again using ioport_map().
As CONFIG_GENERIC_IOMAP=n, and CONFIG_HAS_IOPORT_MAP=y, the
SuperH-specific mapping code in arch/sh/kernel/ioport.c translates
I/O port addresses to virtual addresses by adding sh_io_port_base, which
defaults to -1, thus breaking the assumption of an identity mapping.

Fix this by setting sh_io_port_base to zero.

Fixes: 54330dd39e08b925 ("sh: machvec IO death.")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Rich Felker <dalias@libc.org>
arch/sh/boards/mach-landisk/setup.c