[U-Boot] [PATCH] ot1200: fix card detect for usdhc4
Christian Gmeiner
christian.gmeiner at gmail.com
Mon Nov 17 08:41:21 CET 2014
Hi Stefano
2014-11-13 16:34 GMT+01:00 Stefano Babic <sbabic at denx.de>:
> On 11/11/2014 12:57, Christian Gmeiner wrote:
>> Today I got the final board and found out that a different
>> connector is used as the one on my development board. The
>> new connector has swaped pins for cd and wp.
>>
>> This change is tested on a production ready baord.
>>
>
> I fixed it myself.
>
Thanks a lot!
>> Signed-off-by: Christian Gmeiner <christian.gmeiner at gmail.com>
>> ---
>> board/bachmann/ot1200/ot1200.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/board/bachmann/ot1200/ot1200.c b/board/bachmann/ot1200/ot1200.c
>> index 2ed8cf7..007c1ef 100644
>> --- a/board/bachmann/ot1200/ot1200.c
>> +++ b/board/bachmann/ot1200/ot1200.c
>> @@ -159,8 +159,8 @@ int board_mmc_getcd(struct mmc *mmc)
>> gpio_direction_input(IMX_GPIO_NR(4, 5));
>> ret = gpio_get_value(IMX_GPIO_NR(4, 5));
>> } else {
>> - gpio_direction_input(IMX_GPIO_NR(1, 4));
>> - ret = !gpio_get_value(IMX_GPIO_NR(1, 4));
>> + gpio_direction_input(IMX_GPIO_NR(1, 5));
>> + ret = !gpio_get_value(IMX_GPIO_NR(1, 5));
>> }
>>
>> return ret;
>>
>
> Applied to u-boot-imx, thanks !
>
greets
--
Christian Gmeiner, MSc
https://soundcloud.com/christian-gmeiner
More information about the U-Boot
mailing list