From: Jonas Larsson Date: Tue, 31 Mar 2009 09:16:52 +0000 (+0200) Subject: avr32: Solves problem with inverted MCI detect pin on Merisc board X-Git-Tag: v2.6.31-rc1~346^2~1^2~3 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7ebcfcf19723254ebe90cdf8718436b9955a9a01;p=karo-tx-linux.git avr32: Solves problem with inverted MCI detect pin on Merisc board Same patch as before, modified to use bool. This patch solves the problem with the inverted mci detect pin on Merisc boards. Signed-off-by: Jonas Larsson Signed-off-by: Haavard Skinnemoen --- diff --git a/arch/avr32/boards/merisc/setup.c b/arch/avr32/boards/merisc/setup.c index 20b300cf105a..623b077594fc 100644 --- a/arch/avr32/boards/merisc/setup.c +++ b/arch/avr32/boards/merisc/setup.c @@ -94,9 +94,10 @@ static struct spi_board_info __initdata spi0_board_info[] = { static struct mci_platform_data __initdata mci0_data = { .slot[0] = { - .bus_width = 4, - .detect_pin = GPIO_PIN_PE(19), - .wp_pin = GPIO_PIN_PE(20), + .bus_width = 4, + .detect_pin = GPIO_PIN_PE(19), + .wp_pin = GPIO_PIN_PE(20), + .detect_is_active_high = true, }, };