diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2010-06-07 19:06:26 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-06-07 19:06:26 +0000 |
commit | 36dec8b9380c03782de48c5cf25f6bdc02a70150 (patch) | |
tree | e7fc7878a77427a5b0d6486c5d121ac3bd36c2a0 /wbsio_spi.c | |
parent | 1a5eaa1a0559cc73ee9ffd54c5e1190b2803931a (diff) | |
download | flashrom-36dec8b9380c03782de48c5cf25f6bdc02a70150.tar.gz flashrom-36dec8b9380c03782de48c5cf25f6bdc02a70150.tar.bz2 flashrom-36dec8b9380c03782de48c5cf25f6bdc02a70150.zip |
board_enable.c: Remove useless 'name' parameter
Every board-enable function is passed a 'const char *name' (board name)
which is totally useless as the board name was already printed by flashrom
at that point. Also, 95% or so of the board-enables don't use the
parameter anyway. So, drop it.
Corresponding to flashrom svn r1037.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Diffstat (limited to 'wbsio_spi.c')
-rw-r--r-- | wbsio_spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wbsio_spi.c b/wbsio_spi.c index 53a382ec3..ca7bd01a2 100644 --- a/wbsio_spi.c +++ b/wbsio_spi.c @@ -59,7 +59,7 @@ done: return flashport; } -int wbsio_check_for_spi(const char *name) +int wbsio_check_for_spi(void) { if (0 == (wbsio_spibase = wbsio_get_spibase(WBSIO_PORT1))) if (0 == (wbsio_spibase = wbsio_get_spibase(WBSIO_PORT2))) |