diff options
author | Martin Roth <martin.roth@se-eng.com> | 2014-12-09 13:49:34 -0700 |
---|---|---|
committer | Martin Roth <gaumless@gmail.com> | 2014-12-17 16:54:45 +0100 |
commit | e9c1b211917b357f4646c8afda94f030c2e10d55 (patch) | |
tree | 9c23c74a430590532b44aa97d1ec035ecec311e4 /src/southbridge/nvidia/mcp55 | |
parent | 84422b1a20be7897e3b054ebbfc26f82b0fcdc76 (diff) |
southbridge/nvidia: Spelling/comment fix
Change-Id: I4f9b2b8375abe4691f279df649eaf822b87509e5
Signed-off-by: Martin Roth <martin.roth@se-eng.com>
Reviewed-on: http://review.coreboot.org/7731
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/southbridge/nvidia/mcp55')
-rw-r--r-- | src/southbridge/nvidia/mcp55/mcp55.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/southbridge/nvidia/mcp55/mcp55.c b/src/southbridge/nvidia/mcp55/mcp55.c index 835057925a..0a4304866c 100644 --- a/src/southbridge/nvidia/mcp55/mcp55.c +++ b/src/southbridge/nvidia/mcp55/mcp55.c @@ -218,8 +218,10 @@ void mcp55_enable(device_t dev) if (!dev->enabled) { final_reg |= (1 << index); /* Disable it. */ /* - * The reason for using final_reg, if diable func 1, - * the func 2 will be func 1, so we need disable them one time. + * The reason for using final_reg is that if func 1 is disabled, + * then func 2 will become func 1. + * Because of this, we need loop through disabling them all at + * the same time. */ } |