Author: stuge Date: 2008-10-03 06:20:04 +0200 (Fri, 03 Oct 2008) New Revision: 884
Modified: coreboot-v3/southbridge/amd/sb600/lpc.c coreboot-v3/southbridge/amd/sb600/sata.c Log: Fix copypaste errors in the LPC PCI ID and the sata device_ops struct name.
Signed-off-by: Peter Stuge peter@stuge.se Acked-by: Peter Stuge peter@stuge.se
Modified: coreboot-v3/southbridge/amd/sb600/lpc.c =================================================================== --- coreboot-v3/southbridge/amd/sb600/lpc.c 2008-10-03 04:13:54 UTC (rev 883) +++ coreboot-v3/southbridge/amd/sb600/lpc.c 2008-10-03 04:20:04 UTC (rev 884) @@ -211,7 +211,7 @@ struct device_operations sb600_lpc = { .id = {.type = DEVICE_ID_PCI, {.pci = {.vendor = PCI_VENDOR_ID_AMD, - .device = PCI_DEVICE_ID_AMD_8111_IDE}}}, + .device = PCI_DEVICE_ID_ATI_SB600_LPC}}}, .constructor = default_device_constructor, .phase3_scan_bus = scan_status_bus, .phase4_read_resources = sb600_lpc_read_resources,
Modified: coreboot-v3/southbridge/amd/sb600/sata.c =================================================================== --- coreboot-v3/southbridge/amd/sb600/sata.c 2008-10-03 04:13:54 UTC (rev 883) +++ coreboot-v3/southbridge/amd/sb600/sata.c 2008-10-03 04:20:04 UTC (rev 884) @@ -187,7 +187,7 @@ /* .set_subsystem = pci_dev_set_subsystem, */ };
-struct device_operations amd8111_ide = { +struct device_operations sb600_sata = { .id = {.type = DEVICE_ID_PCI, {.pci = {.vendor = PCI_VENDOR_ID_ATI, .device = PCI_DEVICE_ID_ATI_SB600_SATA}}},