From f7ae91a61bb3a183a2bcf2766fd1518e328c212f Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Fri, 2 Oct 2009 16:24:02 +0200 Subject: [PATCH] --- yaml --- r: 167375 b: refs/heads/master c: 48f029542f1219eb50ade5e24b1b2799bd057413 h: refs/heads/master i: 167373: db6438c13ca3a3b3d5ea8d6fb02fa84928ff4187 167371: cea94128d8134ba47552e07d6857c3c102cdfd1d 167367: bf925bfe8ff3ec0ec5f671ef1cdc1000ebea5707 167359: 0c625b63837db696478185dd060038bae70a5740 v: v3 --- [refs] | 2 +- trunk/drivers/mmc/host/pxamci.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index e8373bdc32ea..77eb22daeab6 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: c639ef431797813a9ab509e7cb5c77a080277a5b +refs/heads/master: 48f029542f1219eb50ade5e24b1b2799bd057413 diff --git a/trunk/drivers/mmc/host/pxamci.c b/trunk/drivers/mmc/host/pxamci.c index 5e0b1529964d..b00d67319058 100644 --- a/trunk/drivers/mmc/host/pxamci.c +++ b/trunk/drivers/mmc/host/pxamci.c @@ -693,7 +693,7 @@ static int pxamci_probe(struct platform_device *pdev) if (gpio_is_valid(gpio_ro)) { ret = gpio_request(gpio_ro, "mmc card read only"); if (ret) { - dev_err(&pdev->dev, "Failed requesting gpio_ro %d\n", gpio_power); + dev_err(&pdev->dev, "Failed requesting gpio_ro %d\n", gpio_ro); goto err_gpio_ro; } gpio_direction_input(gpio_ro); @@ -701,7 +701,7 @@ static int pxamci_probe(struct platform_device *pdev) if (gpio_is_valid(gpio_cd)) { ret = gpio_request(gpio_cd, "mmc card detect"); if (ret) { - dev_err(&pdev->dev, "Failed requesting gpio_cd %d\n", gpio_power); + dev_err(&pdev->dev, "Failed requesting gpio_cd %d\n", gpio_cd); goto err_gpio_cd; } gpio_direction_input(gpio_cd);