> While building a kernel for an SH7751 SolutionEngine, I ran into a link
> problem using a non-PCI configuration. I tracked the problem back to
> arch/sh/kernel/io_7751se.c. On line 304, I see:
>
> #if defined(CONFIG_PCI)
> #define CHECK_SH7751_PCIIO(port) \
> ((port >= PCIBIOS_MIN_IO) && (port < (PCIBIOS_MIN_IO + SH7751_PCI_IO_SIZE)))
> #else
> #define CHECK_SH_7751_PCIIO(port) (0)
> #endif
>
> The problem is with the 5th line. It should be:
>
> #define CHECK_SH7751_PCIIO(port) (0)
>
> I removed the '_' between SH and 7751.
>
This issue has already been fixed in the LinuxSH CVS for both 2.4 and
2.5. Since I just synced 2.5 over, I guess its time for a 2.4 update..
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/