From 5c72a8752bb5ce1c3b1bfb77c08039c71c2113ef Mon Sep 17 00:00:00 2001 From: Sven Schnelle Date: Wed, 20 Apr 2011 08:58:30 +0000 Subject: [PATCH] pci1x2x: use cardbus_read_resources()/cardbus_enable_resources() Signed-off-by: Sven Schnelle Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6527 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/southbridge/ti/pci1x2x/pci1x2x.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/southbridge/ti/pci1x2x/pci1x2x.c b/src/southbridge/ti/pci1x2x/pci1x2x.c index 413937d25..dfb183cd2 100644 --- a/src/southbridge/ti/pci1x2x/pci1x2x.c +++ b/src/southbridge/ti/pci1x2x/pci1x2x.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include "chip.h" @@ -65,9 +66,9 @@ static struct pci_operations ti_pci1x2y_pci_ops = { }; struct device_operations southbridge_ti_pci1x2x_pciops = { - .read_resources = NULL, //pci_dev_read_resources, + .read_resources = cardbus_read_resources, .set_resources = pci_dev_set_resources, - .enable_resources = pci_dev_enable_resources, + .enable_resources = cardbus_enable_resources, .init = ti_pci1x2y_init, .scan_bus = 0, .ops_pci = &ti_pci1x2y_pci_ops, -- 2.25.1