patch-2.4.6 linux/drivers/pcmcia/yenta.c
Next file: linux/drivers/sbus/audio/Makefile
Previous file: linux/drivers/pcmcia/pci_socket.c
Back to the patch index
Back to the overall index
- Lines: 24
- Date:
Tue Jul 3 07:55:20 2001
- Orig file:
v2.4.5/linux/drivers/pcmcia/yenta.c
- Orig date:
Fri Apr 6 10:51:19 2001
diff -u --recursive --new-file v2.4.5/linux/drivers/pcmcia/yenta.c linux/drivers/pcmcia/yenta.c
@@ -642,10 +642,11 @@
/* MAGIC NUMBERS! Fixme */
config_writeb(socket, PCI_CACHE_LINE_SIZE, L1_CACHE_BYTES / 4);
config_writeb(socket, PCI_LATENCY_TIMER, 168);
- config_writeb(socket, PCI_SEC_LATENCY_TIMER, 176);
- config_writeb(socket, PCI_PRIMARY_BUS, dev->bus->number);
- config_writeb(socket, PCI_SECONDARY_BUS, dev->subordinate->number);
- config_writeb(socket, PCI_SUBORDINATE_BUS, dev->subordinate->number);
+ config_writel(socket, PCI_PRIMARY_BUS,
+ (176 << 24) | /* sec. latency timer */
+ (dev->subordinate->subordinate << 16) | /* subordinate bus */
+ (dev->subordinate->secondary << 8) | /* secondary bus */
+ dev->subordinate->primary); /* primary bus */
/*
* Set up the bridging state:
@@ -792,6 +793,7 @@
{ PD(TI,1251A), &ti_ops },
{ PD(TI,1211), &ti_ops },
{ PD(TI,1251B), &ti_ops },
+ { PD(TI,1410), &ti_ops },
{ PD(TI,1420), &ti_ops },
{ PD(RICOH,RL5C465), &ricoh_ops },
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)