Lines Matching defs:hose
11 static struct pci_dev *fake_pci_dev(struct pci_channel *hose,
18 dev.sysdata = hose;
21 bus.sysdata = hose;
22 bus.ops = hose->pci_ops;
34 int __init early_##rw##_config_##size(struct pci_channel *hose, \
38 fake_pci_dev(hose, top_bus, bus, devfn), \
49 int __init pci_is_66mhz_capable(struct pci_channel *hose,
62 if (early_read_config_word(hose, top_bus, current_bus,
73 early_read_config_word(hose, top_bus, current_bus,
90 struct pci_channel *hose = from_timer(hose, t, err_timer);
92 del_timer(&hose->err_timer);
94 enable_irq(hose->err_irq);
99 struct pci_channel *hose = from_timer(hose, t, serr_timer);
101 del_timer(&hose->serr_timer);
103 enable_irq(hose->serr_irq);
106 void pcibios_enable_timers(struct pci_channel *hose)
108 if (hose->err_irq) {
109 timer_setup(&hose->err_timer, pcibios_enable_err, 0);
112 if (hose->serr_irq) {
113 timer_setup(&hose->serr_timer, pcibios_enable_serr, 0);
123 struct pci_channel *hose)
151 if (hose->err_irq) {
152 disable_irq_nosync(hose->err_irq);
153 hose->err_timer.expires = jiffies + HZ;
154 add_timer(&hose->err_timer);