Re: [patch 04/41] x86/boot: Move EISA setup to a proper place

From: Thomas Gleixner
Date: Fri Aug 25 2017 - 07:59:30 EST


On Fri, 25 Aug 2017, Thomas Gleixner wrote:
> +static __init int eisa_bus_probe(void)
> +{
> + void __iomem *p = ioremap(0x0FFFD9, 4);
> +
> + if (readl(p) == 'E' + ('I'<<8) + ('S'<<16) + ('A'<<24))
> + EISA_bus = 1;
> + iounmap(p, 4);

That should obviously be:

iounmap(p);

But as a side note:

Can't we finally get rid of this EISA cruft alltogether?

Thanks,

tglx