Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df9f17e2 authored by Ben Dooks's avatar Ben Dooks
Browse files

[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: default avatarBen Dooks <ben-linux@fluff.org>
parent 66592eee
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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 = {
static struct s3c2410_spigpio_info jive_lcd_spi = {
	.bus_num	= 0,
	.bus_num	= 1,
	.pin_clk	= S3C2410_GPG8,
	.pin_clk	= S3C2410_GPG8,
	.pin_mosi	= S3C2410_GPB8,
	.pin_mosi	= S3C2410_GPB8,
	.chip_select	= jive_lcd_spi_chipselect,
	.chip_select	= jive_lcd_spi_chipselect,