aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorMondrian nuessle <nuessle@uni-hd.de>2009-04-09 14:28:36 +0000
committerRonald G. Minnich <rminnich@gmail.com>2009-04-09 14:28:36 +0000
commit712f325237ce29ea9d0a2cf7c0955bf6199d0803 (patch)
treeff3f812e17ac0d5fac4d6c4fcd08c4fa70535bf7 /util
parent013c7cfab5fe5b6a54e0cd8614fc60d9f328b85b (diff)
Fixed the typo should indeed be a 0x2e.
Tested on an iWILL DK8-HTX board. Signed-off-by: Mondrian nuessle <nuessle@uni-hd.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4086 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rw-r--r--util/flashrom/board_enable.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/util/flashrom/board_enable.c b/util/flashrom/board_enable.c
index 00af1e87da..7509bee84f 100644
--- a/util/flashrom/board_enable.c
+++ b/util/flashrom/board_enable.c
@@ -106,8 +106,7 @@ static int w83627hf_gpio24_raise(uint16_t index, const char *name)
static int w83627hf_gpio24_raise_2e(const char *name)
{
- /* TODO: Typo? Shouldn't this be 0x2e? */
- return w83627hf_gpio24_raise(0x2d, name);
+ return w83627hf_gpio24_raise(0x2e, name);
}
/**