diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-08-13 00:32:14 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-08-13 09:20:41 +0200 |
commit | f6e3a1fa92f61083885178101e973c86b419a6f7 (patch) | |
tree | 2629e15fe256a1ebbf3f8544083ae2122e048916 /board/trab/trab_fkt.c | |
parent | 253cb831f5861358a7fa673305cdf7ded1096f44 (diff) | |
download | u-boot-imx-f6e3a1fa92f61083885178101e973c86b419a6f7.zip u-boot-imx-f6e3a1fa92f61083885178101e973c86b419a6f7.tar.gz u-boot-imx-f6e3a1fa92f61083885178101e973c86b419a6f7.tar.bz2 |
trab: rename spi_init()
The local board-specific spi_init() function conflicts with the common SPI
layer, so rename it to something board-specific.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/trab/trab_fkt.c')
-rw-r--r-- | board/trab/trab_fkt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/trab/trab_fkt.c b/board/trab/trab_fkt.c index 53cdb5a..74cdbfc 100644 --- a/board/trab/trab_fkt.c +++ b/board/trab/trab_fkt.c @@ -729,7 +729,7 @@ int do_dac (char **argv) int brightness; /* initialize SPI */ - spi_init (); + tsc2000_spi_init (); if (((brightness = simple_strtoul (argv[2], NULL, 10)) < 0) || (brightness > 255)) { |