diff options
author | Linas Vepstas <linas@austin.ibm.com> | 2006-12-19 14:00:34 -0600 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-12-20 16:37:49 +1100 |
commit | bb63ab13515951f4d09b16c9e8bd6e50b0f20d1e (patch) | |
tree | 4f8611c30cc7b576bb3ddf21451bf028076673f0 /arch/powerpc | |
parent | 173935f3619ae99fef0cea1dbe4de9c83d6c8e72 (diff) |
[POWERPC] Fix PCI device channel state initialization
Initialize the pci device pci channel state. This is critical
for having the pci_channel_offline() routine (in pci.h) to
function correctly.
Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/pci_64.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/pci_64.c b/arch/powerpc/kernel/pci_64.c index a6b7692c726..73c59ec4912 100644 --- a/arch/powerpc/kernel/pci_64.c +++ b/arch/powerpc/kernel/pci_64.c @@ -360,6 +360,7 @@ struct pci_dev *of_create_pci_dev(struct device_node *node, DBG(" class: 0x%x\n", dev->class); dev->current_state = 4; /* unknown power state */ + dev->error_state = pci_channel_io_normal; if (!strcmp(type, "pci") || !strcmp(type, "pciex")) { /* a PCI-PCI bridge */ |