Re: 2.5.14-dj1: misc.o: undefined reference to `__io_virt_debug'

Martin J. Bligh (Martin.Bligh@us.ibm.com)
Tue, 07 May 2002 17:12:21 -0700


> - outb_p(14, vidport);
> - outb_p(0xff & (pos >> 9), vidport+1);
> - outb_p(15, vidport);
> - outb_p(0xff & (pos >> 1), vidport+1);
> + outb_local(14, vidport); slow_down_io();
> + outb_local(0xff & (pos >> 9), vidport+1); slow_down_io();
> + outb_local(15, vidport); slow_down_io();
> + outb_local(0xff & (pos >> 1), vidport+1); slow_down_io();

You converted the outb_p's to plain outb's. I'm not sure of the reasoning
behind why they were there, but I wasn't brave enough to remove that ;-)
See the patch I mailed out earlier, basically the same idea, but I created
outb_local_p and friends.

Actually, I screwed it up slightly, and put outb_p_local in one, and outb_local_p
in the other. oops.

M.

-
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/