Hi Geert,
Am 09.06.2021 um 18:35 schrieb Geert Uytterhoeven:
@@ -135,9 +139,12 @@ static inline u8 __iomem *isa_itb(unsigned long addr)
case ISA_TYPE_AG: return (u8 __iomem *)AG_ISA_IO_B(addr);
#endif
#ifdef CONFIG_ATARI_ROM_ISA
- case ISA_TYPE_ENEC: return (u8 __iomem *)ENEC_ISA_IO_B(addr);
+ case ISA_TYPE_ENEC: if (addr < 1024)
+ return (u8 __iomem *)ENEC_ISA_IO_B(addr);
+ else
+ return (u8 __iomem *)(addr);
While putting a simple return on the same line as the case keyword,
please start the if statement on a new line.
OK, changed that for v2.
Thanks,
Michael