diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-12-30 15:13:41 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-12-31 15:23:55 +0000 |
commit | 5bca34193dd44c10e6464acbd18428f86b2e59f6 (patch) | |
tree | 31dfe0ddf7cc55bfd3ac6f2409b16ddc123552d2 /src/southbridge/amd/pi | |
parent | e29c70dea1c4f0464757f47d5ec98a58ae49e43e (diff) | |
download | coreboot-5bca34193dd44c10e6464acbd18428f86b2e59f6.tar.xz |
src/{soc,southbridge}/amd: Fix typo
Change-Id: I7e3dc64648af05d51a319019397f24ba74c25c37
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38004
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/southbridge/amd/pi')
-rw-r--r-- | src/southbridge/amd/pi/hudson/smbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/amd/pi/hudson/smbus.c b/src/southbridge/amd/pi/hudson/smbus.c index 783c324f95..bc985e2300 100644 --- a/src/southbridge/amd/pi/hudson/smbus.c +++ b/src/southbridge/amd/pi/hudson/smbus.c @@ -189,7 +189,7 @@ void alink_ab_indx(u32 reg_space, u32 reg_addr, tmp |= val; /* printk(BIOS_DEBUG, "about write %x, index=%x", tmp, (reg_space&0x3)<<29 | reg_addr); */ - outl((reg_space & 0x7) << 29 | reg_addr, AB_INDX); /* probably we dont have to do it again. */ + outl((reg_space & 0x7) << 29 | reg_addr, AB_INDX); /* probably we don't have to do it again. */ outl(tmp, AB_DATA); outl(0, AB_INDX); } @@ -211,7 +211,7 @@ void alink_rc_indx(u32 reg_space, u32 reg_addr, u32 port, tmp |= val; //printk(BIOS_DEBUG, "about write %x, index=%x", tmp, (reg_space&0x3)<<29 | (port&3) << 24 | reg_addr); - outl((reg_space & 0x7) << 29 | (port & 3) << 24 | reg_addr, AB_INDX); /* probably we dont have to do it again. */ + outl((reg_space & 0x7) << 29 | (port & 3) << 24 | reg_addr, AB_INDX); /* probably we don't have to do it again. */ outl(tmp, AB_DATA); outl(0, AB_INDX); } |