aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/ibexpeak/usb_ehci.c
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-03-03 23:21:12 +0100
committerVladimir Serbinenko <phcoder@gmail.com>2014-03-04 00:00:20 +0100
commit83ef74992a991023999b8ce2361e2b9bb1fb188f (patch)
tree7c3d6c60ac94026d38953c11d0ad52b59d387c63 /src/southbridge/intel/ibexpeak/usb_ehci.c
parent3f7ad7b216b4021c7cb93201a94b0fae46f5e19e (diff)
ibexpeak/ehci: Set .enable_resources properly.
Without this memory decoding isn't activated which, in turn, makes SeaBIOS crash. Change-Id: I3dcc721b500ab7468e1082157eeeed38044462d0 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/5326 Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/southbridge/intel/ibexpeak/usb_ehci.c')
-rw-r--r--src/southbridge/intel/ibexpeak/usb_ehci.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/southbridge/intel/ibexpeak/usb_ehci.c b/src/southbridge/intel/ibexpeak/usb_ehci.c
index 7dc7b030ed..21a257f328 100644
--- a/src/southbridge/intel/ibexpeak/usb_ehci.c
+++ b/src/southbridge/intel/ibexpeak/usb_ehci.c
@@ -84,6 +84,7 @@ static struct pci_operations lops_pci = {
static struct device_operations usb_ehci_ops = {
.read_resources = pci_ehci_read_resources,
.set_resources = pci_dev_set_resources,
+ .enable_resources = pci_dev_enable_resources,
.init = usb_ehci_init,
.scan_bus = 0,
.ops_pci = &lops_pci,