Update of /cvsroot/linux-vax/kernel-2.4/drivers/char
In directory usw-pr-cvs1:/tmp/cvs-serv21685
Modified Files:
dz.c
Log Message:
Swap the tx/dx interrupt numbers (hardwired section only) to make things
work proper like.
Index: dz.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/drivers/char/dz.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- dz.c 2001/09/16 15:13:09 1.8
+++ dz.c 2001/09/21 18:04:53 1.9
@@ -1492,12 +1492,12 @@
}
#else
if (is_ka46()){
- dz_vsbus_tx_int=4;
- dz_vsbus_rx_int=5;
+ dz_vsbus_tx_int=5;
+ dz_vsbus_rx_int=4;
irq=149;
} else {
- dz_vsbus_tx_int=6;
- dz_vsbus_rx_int=7;
+ dz_vsbus_tx_int=7;
+ dz_vsbus_rx_int=6;
irq=177;
}
#endif
|