aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/via/k8t890/error.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/southbridge/via/k8t890/error.c')
-rw-r--r--src/southbridge/via/k8t890/error.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/southbridge/via/k8t890/error.c b/src/southbridge/via/k8t890/error.c
index f2cab10db0..1f6979a31e 100644
--- a/src/southbridge/via/k8t890/error.c
+++ b/src/southbridge/via/k8t890/error.c
@@ -41,12 +41,16 @@ static void error_enable(struct device *dev)
dump_south(dev);
}
+static struct pci_operations lops_pci = {
+ .set_subsystem = pci_dev_set_subsystem,
+};
+
static const struct device_operations error_ops = {
.read_resources = pci_dev_read_resources,
.set_resources = pci_dev_set_resources,
.enable_resources = pci_dev_enable_resources,
.enable = error_enable,
- .ops_pci = 0,
+ .ops_pci = &lops_pci,
};
static const struct pci_driver northbridge_driver_t800 __pci_driver = {