Commit 80e7b19a authored by Daniel Drake's avatar Daniel Drake Committed by Jesse Barnes

PCI: OLPC: Only enable PCI configuration type override on XO-1

This configuration type override is for XO-1 only and must not happen
on XO-1.5.
Acked-by: default avatarAndres Salomon <dilinger@queued.net>
Signed-off-by: default avatarDaniel Drake <dsd@laptop.org>
Signed-off-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
parent 66db60ea
...@@ -1900,7 +1900,7 @@ config PCI_GODIRECT ...@@ -1900,7 +1900,7 @@ config PCI_GODIRECT
bool "Direct" bool "Direct"
config PCI_GOOLPC config PCI_GOOLPC
bool "OLPC" bool "OLPC XO-1"
depends on OLPC depends on OLPC
config PCI_GOANY config PCI_GOANY
......
...@@ -242,8 +242,10 @@ static int __init olpc_init(void) ...@@ -242,8 +242,10 @@ static int __init olpc_init(void)
(unsigned char *) &olpc_platform_info.ecver, 1); (unsigned char *) &olpc_platform_info.ecver, 1);
#ifdef CONFIG_PCI_OLPC #ifdef CONFIG_PCI_OLPC
/* If the VSA exists let it emulate PCI, if not emulate in kernel */ /* If the VSA exists let it emulate PCI, if not emulate in kernel.
if (!cs5535_has_vsa2()) * XO-1 only. */
if (olpc_platform_info.boardrev < olpc_board_pre(0xd0) &&
!cs5535_has_vsa2())
x86_init.pci.arch_init = pci_olpc_init; x86_init.pci.arch_init = pci_olpc_init;
#endif #endif
......
...@@ -304,7 +304,7 @@ static struct pci_raw_ops pci_olpc_conf = { ...@@ -304,7 +304,7 @@ static struct pci_raw_ops pci_olpc_conf = {
int __init pci_olpc_init(void) int __init pci_olpc_init(void)
{ {
printk(KERN_INFO "PCI: Using configuration type OLPC\n"); printk(KERN_INFO "PCI: Using configuration type OLPC XO-1\n");
raw_pci_ops = &pci_olpc_conf; raw_pci_ops = &pci_olpc_conf;
is_lx = is_geode_lx(); is_lx = is_geode_lx();
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment