diff options
author | Stefan Reinauer <stepan@coreboot.org> | 2010-11-29 00:20:20 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-11-29 00:20:20 +0000 |
commit | 6fc7d2798398142af5629e50d2544b1d8f5d0fff (patch) | |
tree | e49adfd0c13e2f02611f54b8f6bb56d754f0da5b /src/southbridge/nvidia/mcp55 | |
parent | d73c50565b526c86195cc10184e0eda2a03d9a1a (diff) |
fix typo
Signed-off-by: Stefan Reinauer <stepan@coreboot.org>
Acked-by: Stefan Reinauer <stepan@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6130 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/nvidia/mcp55')
-rw-r--r-- | src/southbridge/nvidia/mcp55/mcp55_azalia.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/nvidia/mcp55/mcp55_azalia.c b/src/southbridge/nvidia/mcp55/mcp55_azalia.c index 48aef0172d..493c98f7b2 100644 --- a/src/southbridge/nvidia/mcp55/mcp55_azalia.c +++ b/src/southbridge/nvidia/mcp55/mcp55_azalia.c @@ -54,7 +54,7 @@ static int set_bits(u32 port, u32 mask, u32 val) reg32 &= mask; } while ((reg32 != val) && --count); - /* Timeout occureed */ + /* Timeout occurred */ if (!count) return -1; return 0; |