diff options
author | Jordan, William P <William.Jordan@unisys.com> | 2005-11-21 22:51:57 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-09 12:13:16 -0800 |
commit | 88d69a1dff4014889782ebad24ed3e964a8844bc (patch) | |
tree | 972dec765a33cf04b9446d04d6fd23e4490e5c72 | |
parent | 8c9ad508c8737ca46a4c55b1062d159b86f7cee2 (diff) | |
download | kernel_samsung_espresso10-88d69a1dff4014889782ebad24ed3e964a8844bc.zip kernel_samsung_espresso10-88d69a1dff4014889782ebad24ed3e964a8844bc.tar.gz kernel_samsung_espresso10-88d69a1dff4014889782ebad24ed3e964a8844bc.tar.bz2 |
[PATCH] PCI Hotplug: ibmphp_pci.c copy-n-paste fix
I noticed what appears to be a cut/paste error in
drivers/pci/hotplug/ibmphp_pci.c:
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/pci/hotplug/ibmphp_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/ibmphp_pci.c b/drivers/pci/hotplug/ibmphp_pci.c index b1ba429..155133f 100644 --- a/drivers/pci/hotplug/ibmphp_pci.c +++ b/drivers/pci/hotplug/ibmphp_pci.c @@ -969,7 +969,7 @@ static int configure_bridge (struct pci_func **func_passed, u8 slotno) debug ("io 32\n"); need_io_upper = TRUE; } - if ((io_base & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) { + if ((pfmem_base & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) { debug ("pfmem 64\n"); need_pfmem_upper = TRUE; } |