diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-10-10 21:15:01 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-10-10 21:15:01 +0000 |
commit | 0a58a7b3edc9d1a20bf3aee0c747d5777b0c8696 (patch) | |
tree | ee0aa98fefd8e99afba4aeba1de6589b4478398c /src | |
parent | 470e1821c3fd37b92ab5200ad4d0d17c06efe0a6 (diff) |
fix typos found by zbao in other files.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5934 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/southbridge/intel/i82801gx/i82801gx_azalia.c | 6 | ||||
-rw-r--r-- | src/southbridge/nvidia/mcp55/mcp55_azalia.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/southbridge/intel/i82801gx/i82801gx_azalia.c b/src/southbridge/intel/i82801gx/i82801gx_azalia.c index a7769dce23..362ffa3aa8 100644 --- a/src/southbridge/intel/i82801gx/i82801gx_azalia.c +++ b/src/southbridge/intel/i82801gx/i82801gx_azalia.c @@ -56,7 +56,7 @@ static int set_bits(u32 port, u32 mask, u32 val) reg32 &= mask; } while ((reg32 != val) && --count); - /* Timeout occured */ + /* Timeout occurred */ if (!count) return -1; return 0; @@ -112,7 +112,7 @@ static u32 find_verb(struct device *dev, u32 viddid, const u32 ** verb) } /** - * Wait 50usec for for the codec to indicate it is ready + * Wait 50usec for the codec to indicate it is ready * no response would imply that the codec is non-operative */ @@ -134,7 +134,7 @@ static int wait_for_ready(u32 base) } /** - * Wait 50usec for for the codec to indicate that it accepted + * Wait 50usec for the codec to indicate that it accepted * the previous command. No response would imply that the code * is non-operative */ diff --git a/src/southbridge/nvidia/mcp55/mcp55_azalia.c b/src/southbridge/nvidia/mcp55/mcp55_azalia.c index 9205808754..48aef0172d 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 occured */ + /* Timeout occureed */ if (!count) return -1; return 0; @@ -110,7 +110,7 @@ static u32 find_verb(struct device *dev, u32 viddid, u32 ** verb) } /** - * Wait 50usec for for the codec to indicate it is ready + * Wait 50usec for the codec to indicate it is ready * no response would imply that the codec is non-operative */ @@ -132,7 +132,7 @@ static int wait_for_ready(u32 base) } /** - * Wait 50usec for for the codec to indicate that it accepted + * Wait 50usec for the codec to indicate that it accepted * the previous command. No response would imply that the code * is non-operative */ |