Author: rminnich Date: 2009-04-09 16:28:36 +0200 (Thu, 09 Apr 2009) New Revision: 4086
Modified: trunk/util/flashrom/board_enable.c Log: 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
Modified: trunk/util/flashrom/board_enable.c =================================================================== --- trunk/util/flashrom/board_enable.c 2009-04-08 07:47:01 UTC (rev 4085) +++ trunk/util/flashrom/board_enable.c 2009-04-09 14:28:36 UTC (rev 4086) @@ -106,8 +106,7 @@
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); }
/**