aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801ex/ehci.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2013-06-06 10:21:28 +0300
committerAaron Durbin <adurbin@google.com>2013-07-01 17:11:32 +0200
commitcaaf0bf483288ea092d721954df0407930c67fc8 (patch)
tree24142070402a0b430d3ca56ee5f32d142f38606c /src/southbridge/intel/i82801ex/ehci.c
parent54c586c7e76d9e9ec75ccebaf1555b3fde6114e8 (diff)
usbdebug: Support i82801dx/ex southbridge
Tested on i82801dx system with board aopen/dxplplusu. Change-Id: I522455ac79c87b9b6fc9cd8c4dc0da3563dfbfad Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/3381 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/southbridge/intel/i82801ex/ehci.c')
-rw-r--r--src/southbridge/intel/i82801ex/ehci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/southbridge/intel/i82801ex/ehci.c b/src/southbridge/intel/i82801ex/ehci.c
index 8ae921d194..045840a82b 100644
--- a/src/southbridge/intel/i82801ex/ehci.c
+++ b/src/southbridge/intel/i82801ex/ehci.c
@@ -3,6 +3,7 @@
#include <device/pci.h>
#include <device/pci_ids.h>
#include <device/pci_ops.h>
+#include <usbdebug.h>
#include "i82801ex.h"
static void ehci_init(struct device *dev)
@@ -34,7 +35,7 @@ static struct pci_operations lops_pci = {
.set_subsystem = &ehci_set_subsystem,
};
static struct device_operations ehci_ops = {
- .read_resources = pci_dev_read_resources,
+ .read_resources = pci_ehci_read_resources,
.set_resources = pci_dev_set_resources,
.enable_resources = pci_dev_enable_resources,
.init = ehci_init,