[parisc-linux-cvs] obvious typo in wax_eisa.c

Helge Deller deller@gmx.de
Tue, 1 May 2001 15:35:20 +0200


I just committed the following patch, which swaps the wax_inl() and wax_inw() 
pointers to the correct order of struct pci_port_ops.
Nevertheless EISA-support on WAX is currently unfunctional.

Helge

diff -u -r1.2 wax_eisa.c
--- wax_eisa.c  2001/02/07 07:49:01     1.2
+++ wax_eisa.c  2001/05/01 13:24:02
@@ -78,8 +78,12 @@
 WAX_EISA_IN(l,32)
 
 static struct pci_port_ops wax_port_ops = {
-       wax_inb, wax_inl, wax_inw,
-       wax_outb, wax_outl, wax_outw
+       inb: wax_inb,
+       inw: wax_inw,
+       inl: wax_inl,
+       outb: wax_outb,
+       outw: wax_outw,
+       outl: wax_outl
 };