diff options
author | Zheng Bao <zheng.bao@amd.com> | 2009-10-14 02:56:00 +0000 |
---|---|---|
committer | Zheng Bao <Zheng.Bao@amd.com> | 2009-10-14 02:56:00 +0000 |
commit | cb69cb3e69425079d2046c7883865485f2c00dc4 (patch) | |
tree | e7a192d2c356a4cbf4d69353b225a9de99b4d807 /src/southbridge | |
parent | b0575d8e1fe1a3368ec4690dde4ffd4fe7f033d3 (diff) | |
download | coreboot-cb69cb3e69425079d2046c7883865485f2c00dc4.tar.xz |
delete white trailing spaces. It is done by the perl command.
sh> perl -pi -e 's/[[:blank:]]+$//' $files
Trivial.
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Zheng Bao <zheng.bao@amd.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4772 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge')
-rw-r--r-- | src/southbridge/amd/sb600/sb600_hda.c | 18 | ||||
-rw-r--r-- | src/southbridge/amd/sb600/sb600_sata.c | 10 |
2 files changed, 14 insertions, 14 deletions
diff --git a/src/southbridge/amd/sb600/sb600_hda.c b/src/southbridge/amd/sb600/sb600_hda.c index 41b94a90de..4c17c04bbb 100644 --- a/src/southbridge/amd/sb600/sb600_hda.c +++ b/src/southbridge/amd/sb600/sb600_hda.c @@ -42,8 +42,8 @@ static int set_bits(u8 * port, u32 mask, u32 val) dword |= val; writel(dword, port); - /* Wait for readback of register to - * match what was just written to it + /* Wait for readback of register to + * match what was just written to it */ count = 50; do { @@ -64,11 +64,11 @@ static u32 codec_detect(u8 * base) u32 dword; /* Set Bit0 to 0 to enter reset state (BAR + 0x8)[0] */ - if (set_bits(base + 0x08, 1, 0) == -1) + if (set_bits(base + 0x08, 1, 0) == -1) goto no_codec; /* Set Bit 0 to 1 to exit reset state (BAR + 0x8)[0] */ - if (set_bits(base + 0x08, 1, 1) == -1) + if (set_bits(base + 0x08, 1, 1) == -1) goto no_codec; /* Delay for 1 ms since the BKDG does */ @@ -79,7 +79,7 @@ static u32 codec_detect(u8 * base) dword &= 0x0F; if (!dword) goto no_codec; - + return dword; no_codec: @@ -271,10 +271,10 @@ static void hda_init(struct device *dev) struct resource *res; u32 codec_mask; device_t sm_dev; - + /* Enable azalia - PM_io 0x59[4], disable ac97 - PM_io 0x59[1..0] */ pm_iowrite(0x59, 0xB); - + /* Find the SMBus */ /* FIXME: Need to find out why the call below crashes. */ /*sm_dev = dev_find_device(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_ATI_SB600_SM, 0);*/ @@ -294,8 +294,8 @@ static void hda_init(struct device *dev) pci_write_config32(dev, 0x2c, dword); /* Read in BAR */ - /* Is this right? HDA allows for a 64-bit BAR - * but this is only setup for a 32-bit one + /* Is this right? HDA allows for a 64-bit BAR + * but this is only setup for a 32-bit one */ res = find_resource(dev, 0x10); if (!res) diff --git a/src/southbridge/amd/sb600/sb600_sata.c b/src/southbridge/amd/sb600/sb600_sata.c index 377db10c13..3d7f2c416c 100644 --- a/src/southbridge/amd/sb600/sb600_sata.c +++ b/src/southbridge/amd/sb600/sb600_sata.c @@ -185,14 +185,14 @@ static void sata_init(struct device *dev) byte = readb(sata_bar5 + 0x12C + 0x80 * i); /* Set Reset Bit and 1.5g bit */ - byte |= 0x11; + byte |= 0x11; writeb(byte, (sata_bar5 + 0x12C + 0x80 * i)); - - /* Wait 1ms */ - mdelay(1); + + /* Wait 1ms */ + mdelay(1); /* Clear Reset Bit */ - byte &= ~0x01; + byte &= ~0x01; writeb(byte, (sata_bar5 + 0x12C + 0x80 * i)); /* Wait 1ms */ |