Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / southbridge / amd / amd8111 / amd8111_usb.c
index 5a01a97c5831f3b3fc5bec39e550f9dffbd4e97c..13dccf435b97583dc17d34fef134900ab999f1a3 100644 (file)
@@ -12,7 +12,7 @@
 
 static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
 {
-       pci_write_config32(dev, 0x70, 
+       pci_write_config32(dev, 0x70,
                ((device & 0xffff) << 16) | (vendor & 0xffff));
 }
 
@@ -30,7 +30,7 @@ static struct device_operations usb_ops = {
        .ops_pci          = &lops_pci,
 };
 
-static struct pci_driver usb_driver __pci_driver = {
+static const struct pci_driver usb_driver __pci_driver = {
        .ops    = &usb_ops,
        .vendor = PCI_VENDOR_ID_AMD,
        .device = PCI_DEVICE_ID_AMD_8111_USB,