Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / northbridge / intel / e7525 / pciexp_porta1.c
index ac3c97c016fb2dd218149dff52f09452e8c31015..b54ee8add6ec2f6d41598fa4e08f6ade10407739 100644 (file)
@@ -6,16 +6,16 @@
 #include <device/pciexp.h>
 #include <arch/io.h>
 #include "chip.h"
-                                                           
+
 typedef struct northbridge_intel_e7525_config config_t;
 
 static void pcie_init(struct device *dev)
 {
         config_t *config;
-                                                                                
+
         /* Get the chip configuration */
         config = dev->chip_info;
-                                                                                
+
         if(config->intrline) {
                 pci_write_config32(dev, 0x3c, config->intrline);
         }
@@ -32,10 +32,10 @@ static struct device_operations pcie_ops  = {
         .ops_pci          = 0,
 };
 
-static struct pci_driver pci_driver __pci_driver = {
+static const struct pci_driver pci_driver __pci_driver = {
         .ops    = &pcie_ops,
         .vendor = PCI_VENDOR_ID_INTEL,
         .device = PCI_DEVICE_ID_INTEL_PCIE_PA1,
 };
-                                                                                
+