From c269d237f93d7867c7f4cad9a4d619b56f4a3d81 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 30 Mar 2010 21:48:23 +0000 Subject: fix some southbridge warnings (trivial) Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5334 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/southbridge/intel/i82870/p64h2_pcibridge.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/southbridge/intel/i82870') diff --git a/src/southbridge/intel/i82870/p64h2_pcibridge.c b/src/southbridge/intel/i82870/p64h2_pcibridge.c index 3c1d418fb5..a489fe53f9 100644 --- a/src/southbridge/intel/i82870/p64h2_pcibridge.c +++ b/src/southbridge/intel/i82870/p64h2_pcibridge.c @@ -8,13 +8,12 @@ static void p64h2_pcix_init(device_t dev) { - uint32_t dword; - uint16_t word; - uint8_t byte; + u32 dword; + u8 byte; - - /* The purpose of changes to HCCR, ACNF, and MTT is to speed up the - PCI bus for cards having high speed transfers. */ + /* The purpose of changes to HCCR, ACNF, and MTT is to speed + * up the PCI bus for cards having high speed transfers. + */ dword = 0xc2040002; pci_write_config32(dev, HCCR, dword); dword = 0x0000c3bf; @@ -37,4 +36,4 @@ static const struct pci_driver pcix_driver __pci_driver = { .vendor = PCI_VENDOR_ID_INTEL, .device = PCI_DEVICE_ID_INTEL_82870_1F0, }; - + -- cgit v1.2.3