diff options
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/lenovo/t520/dsdt.asl | 2 | ||||
-rw-r--r-- | src/mainboard/lenovo/t520/mainboard.c | 7 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/mainboard/lenovo/t520/dsdt.asl b/src/mainboard/lenovo/t520/dsdt.asl index 0e7a965d47..e48a5904bf 100644 --- a/src/mainboard/lenovo/t520/dsdt.asl +++ b/src/mainboard/lenovo/t520/dsdt.asl @@ -23,7 +23,7 @@ #define BRIGHTNESS_UP \_SB.PCI0.GFX0.LCD0.INCB #define BRIGHTNESS_DOWN \_SB.PCI0.GFX0.LCD0.DECB #define ACPI_VIDEO_DEVICE \_SB.PCI0.GFX0 -#define RP03_IS_EXPRESSCARD 1 +#define RP04_IS_EXPRESSCARD 1 #define HAVE_LCD_SCREEN 1 DefinitionBlock( diff --git a/src/mainboard/lenovo/t520/mainboard.c b/src/mainboard/lenovo/t520/mainboard.c index c37e6b981f..8b1aa0d02a 100644 --- a/src/mainboard/lenovo/t520/mainboard.c +++ b/src/mainboard/lenovo/t520/mainboard.c @@ -158,12 +158,11 @@ static void mainboard_init(device_t dev) pc_keyboard_init(); /* Enable expresscard hotplug events. */ - pci_write_config32(dev_find_slot(0, PCI_DEVFN(0x1c, 2)), + pci_write_config32(dev_find_slot(0, PCI_DEVFN(0x1c, 3)), 0xd8, - pci_read_config32(dev_find_slot(0, PCI_DEVFN(0x1c, 2)), 0xd8) + pci_read_config32(dev_find_slot(0, PCI_DEVFN(0x1c, 3)), 0xd8) | (1 << 30)); - - pci_write_config16(dev_find_slot(0, PCI_DEVFN(0x1c, 2)), + pci_write_config16(dev_find_slot(0, PCI_DEVFN(0x1c, 3)), 0x42, 0x142); } |