Intel 82371EB: Some code simplifications (trivial).

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2707 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
diff --git a/src/southbridge/intel/i82371eb/i82371eb_smbus.c b/src/southbridge/intel/i82371eb/i82371eb_smbus.c
index cc47f78..e8df0720 100644
--- a/src/southbridge/intel/i82371eb/i82371eb_smbus.c
+++ b/src/southbridge/intel/i82371eb/i82371eb_smbus.c
@@ -27,11 +27,6 @@
 static struct smbus_bus_operations lops_smbus_bus = {
 };
 
-/* There are no subsystem IDs on the Intel 82371EB. */
-static struct pci_operations lops_pci = {
-	// .set_subsystem = 0,
-};
-
 static struct device_operations smbus_ops = {
 	.read_resources		= pci_dev_read_resources,
 	.set_resources		= pci_dev_set_resources,
@@ -39,7 +34,7 @@
 	.init			= 0,
 	.scan_bus		= scan_static_bus,
 	// .enable		= i82371eb_enable,	// TODO: Needed?
-	.ops_pci		= &lops_pci,
+	.ops_pci		= 0, /* No subsystem IDs on 82371EB! */
 	.ops_smbus_bus		= &lops_smbus_bus,
 };