summaryrefslogtreecommitdiffstats
path: root/board/amcc
diff options
context:
space:
mode:
authorMarkus Brunner <super.firetwister@googlemail.com>2008-03-05 21:38:12 +0100
committerStefan Roese <sr@denx.de>2008-03-07 09:15:26 +0100
commit772003e43957ee0c895abed7cd82cbe72820cbb8 (patch)
treedf417cfd14da98e45a26ebb0dc58ece233093af7 /board/amcc
parentfc84a8495ac750f6b4adae81f8c4f100f65b6340 (diff)
downloadblackbird-obmc-uboot-772003e43957ee0c895abed7cd82cbe72820cbb8.tar.gz
blackbird-obmc-uboot-772003e43957ee0c895abed7cd82cbe72820cbb8.zip
fix taihu soft spi_read
The taihu board used gpio_read_out_bit which reads the output register and not the pin state. Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
Diffstat (limited to 'board/amcc')
-rw-r--r--board/amcc/taihu/taihu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/amcc/taihu/taihu.c b/board/amcc/taihu/taihu.c
index ea83671988..eedde597b8 100644
--- a/board/amcc/taihu/taihu.c
+++ b/board/amcc/taihu/taihu.c
@@ -162,7 +162,7 @@ void spi_sda(int bit)
unsigned char spi_read(void)
{
- return (unsigned char)gpio_read_out_bit(SPI_DIN_GPIO15);
+ return (unsigned char)gpio_read_in_bit(SPI_DIN_GPIO15);
}
void taihu_spi_chipsel(int cs)
OpenPOWER on IntegriCloud