summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrminnich <rminnich@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2009-04-09 14:28:36 +0000
committerrminnich <rminnich@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2009-04-09 14:28:36 +0000
commit09f00ddd4a78d244f25971dd1c4fc294c949c731 (patch)
tree4c270d46bd908c44dde87e4a06261c82b7f1352c
parent5141f4543b6205254038b9c22caf1fadeea89ff6 (diff)
downloadflashrom-09f00ddd4a78d244f25971dd1c4fc294c949c731.tar.gz
Original v2 revision: 4086
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: https://code.coreboot.org/svn/flashrom/trunk@424 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--board_enable.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/board_enable.c b/board_enable.c
index 00af1e8..7509bee 100644
--- a/board_enable.c
+++ b/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);
}
/**