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

Reply via email to