From: Lars-Peter Clausen Date: Fri, 5 Mar 2010 21:43:37 +0000 (-0800) Subject: s3cmci: s3cmci_card_present: Use no_detect to decide whether there is a card detect pin X-Git-Tag: submit/tizen/20141203.153721~12532 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dc2ed552804f3a2ae41c0ffe4bc09879ec8f7396;p=platform%2Fkernel%2Flinux-arm64.git s3cmci: s3cmci_card_present: Use no_detect to decide whether there is a card detect pin Signed-off-by: Lars-Peter Clausen Cc: Ben Dooks Cc: Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c index b9c96cc87b0..2fdf7689ae6 100644 --- a/drivers/mmc/host/s3cmci.c +++ b/drivers/mmc/host/s3cmci.c @@ -1179,7 +1179,7 @@ static int s3cmci_card_present(struct mmc_host *mmc) struct s3c24xx_mci_pdata *pdata = host->pdata; int ret; - if (pdata->gpio_detect == 0) + if (pdata->no_detect) return -ENOSYS; ret = gpio_get_value(pdata->gpio_detect) ? 0 : 1;