diff options
author | Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de> | 2010-06-12 23:14:03 +0000 |
---|---|---|
committer | Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de> | 2010-06-12 23:14:03 +0000 |
commit | 51825085f8771eef50679b8d1c93e228db037463 (patch) | |
tree | d0b11ecddfa94779c4e4621aabdeb0b206c00aef | |
parent | 5f31ebe244236d9ffbc54a16c5dc72345b32c346 (diff) | |
download | flashrom-51825085f8771eef50679b8d1c93e228db037463.tar.gz flashrom-51825085f8771eef50679b8d1c93e228db037463.tar.bz2 flashrom-51825085f8771eef50679b8d1c93e228db037463.zip |
Unbreak flashrom - fix compiler error
Fix compiler error (bad forward port in r1040).
Corresponding to flashrom svn r1042.
Signed-off-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
Acked-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
-rw-r--r-- | board_enable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board_enable.c b/board_enable.c index a528269a..7d731c39 100644 --- a/board_enable.c +++ b/board_enable.c @@ -659,7 +659,7 @@ static int nvidia_mcp_gpio8_raise(void) /** * Suited for MSI K8N Neo2 Platinum: Socket 939 + nForce3 Ultra + CK8. */ -static int nvidia_mcp_gpio0c_raise(const char *name) +static int nvidia_mcp_gpio0c_raise(void) { return nvidia_mcp_gpio_set(0x0c, 1); } |