summaryrefslogtreecommitdiff
path: root/arch/arm/mach-s3c2412
diff options
context:
space:
mode:
authorBen Dooks <ben-linux@fluff.org>2008-08-26 21:54:07 (GMT)
committerBen Dooks <ben-linux@fluff.org>2008-08-26 21:56:22 (GMT)
commitdf9f17e20e3180572fe26f60ec4e5ba7db0377a7 (patch)
treedb88107b38ed824aedc906836ecb84312d967402 /arch/arm/mach-s3c2412
parent66592eee16eaede05734ecc6fef797dafd2c6a12 (diff)
downloadlinux-fsl-qoriq-df9f17e20e3180572fe26f60ec4e5ba7db0377a7.tar.xz
[ARM] JIVE: Fix the spi bus numbering
The first spi bus is registered with number 0, but the board data says that the device on it is registered on bus 1. Move the spi bus to bus 1 to keep the compatibility with the original board-support patches. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c2412')
-rw-r--r--arch/arm/mach-s3c2412/mach-jive.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2412/mach-jive.c b/arch/arm/mach-s3c2412/mach-jive.c
index 4c061d2..ad980a1 100644
--- a/arch/arm/mach-s3c2412/mach-jive.c
+++ b/arch/arm/mach-s3c2412/mach-jive.c
@@ -395,7 +395,7 @@ static void jive_lcd_spi_chipselect(struct s3c2410_spigpio_info *spi, int cs)
}
static struct s3c2410_spigpio_info jive_lcd_spi = {
- .bus_num = 0,
+ .bus_num = 1,
.pin_clk = S3C2410_GPG8,
.pin_mosi = S3C2410_GPB8,
.chip_select = jive_lcd_spi_chipselect,