Commit 7bca646e authored by Pramod Gurav's avatar Pramod Gurav Committed by Ulf Hansson

mmc: atmel-mci: Switch to using managed resource in probe

This change uses managed resource APIs to allocate resources such as,
clk, gpio, io in order to simplify the driver unload or failure cases.
Hence does away with release statements of the same resources in error
labels and remove function.
Signed-off-by: default avatarPramod Gurav <pramod.gurav@smartplayin.com>
Acked-by: default avatarLudovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent dfa5d196
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include <linux/gpio.h> #include <linux/gpio.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/ioport.h> #include <linux/ioport.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/of.h> #include <linux/of.h>
...@@ -2195,7 +2196,8 @@ static int __init atmci_init_slot(struct atmel_mci *host, ...@@ -2195,7 +2196,8 @@ static int __init atmci_init_slot(struct atmel_mci *host,
/* Assume card is present initially */ /* Assume card is present initially */
set_bit(ATMCI_CARD_PRESENT, &slot->flags); set_bit(ATMCI_CARD_PRESENT, &slot->flags);
if (gpio_is_valid(slot->detect_pin)) { if (gpio_is_valid(slot->detect_pin)) {
if (gpio_request(slot->detect_pin, "mmc_detect")) { if (devm_gpio_request(&host->pdev->dev, slot->detect_pin,
"mmc_detect")) {
dev_dbg(&mmc->class_dev, "no detect pin available\n"); dev_dbg(&mmc->class_dev, "no detect pin available\n");
slot->detect_pin = -EBUSY; slot->detect_pin = -EBUSY;
} else if (gpio_get_value(slot->detect_pin) ^ } else if (gpio_get_value(slot->detect_pin) ^
...@@ -2208,7 +2210,8 @@ static int __init atmci_init_slot(struct atmel_mci *host, ...@@ -2208,7 +2210,8 @@ static int __init atmci_init_slot(struct atmel_mci *host,
mmc->caps |= MMC_CAP_NEEDS_POLL; mmc->caps |= MMC_CAP_NEEDS_POLL;
if (gpio_is_valid(slot->wp_pin)) { if (gpio_is_valid(slot->wp_pin)) {
if (gpio_request(slot->wp_pin, "mmc_wp")) { if (devm_gpio_request(&host->pdev->dev, slot->wp_pin,
"mmc_wp")) {
dev_dbg(&mmc->class_dev, "no WP pin available\n"); dev_dbg(&mmc->class_dev, "no WP pin available\n");
slot->wp_pin = -EBUSY; slot->wp_pin = -EBUSY;
} }
...@@ -2232,7 +2235,6 @@ static int __init atmci_init_slot(struct atmel_mci *host, ...@@ -2232,7 +2235,6 @@ static int __init atmci_init_slot(struct atmel_mci *host,
dev_dbg(&mmc->class_dev, dev_dbg(&mmc->class_dev,
"could not request IRQ %d for detect pin\n", "could not request IRQ %d for detect pin\n",
gpio_to_irq(slot->detect_pin)); gpio_to_irq(slot->detect_pin));
gpio_free(slot->detect_pin);
slot->detect_pin = -EBUSY; slot->detect_pin = -EBUSY;
} }
} }
...@@ -2257,10 +2259,7 @@ static void __exit atmci_cleanup_slot(struct atmel_mci_slot *slot, ...@@ -2257,10 +2259,7 @@ static void __exit atmci_cleanup_slot(struct atmel_mci_slot *slot,
free_irq(gpio_to_irq(pin), slot); free_irq(gpio_to_irq(pin), slot);
del_timer_sync(&slot->detect_timer); del_timer_sync(&slot->detect_timer);
gpio_free(pin);
} }
if (gpio_is_valid(slot->wp_pin))
gpio_free(slot->wp_pin);
slot->host->slot[id] = NULL; slot->host->slot[id] = NULL;
mmc_free_host(slot->mmc); mmc_free_host(slot->mmc);
...@@ -2396,7 +2395,7 @@ static int __init atmci_probe(struct platform_device *pdev) ...@@ -2396,7 +2395,7 @@ static int __init atmci_probe(struct platform_device *pdev)
if (irq < 0) if (irq < 0)
return irq; return irq;
host = kzalloc(sizeof(struct atmel_mci), GFP_KERNEL); host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL);
if (!host) if (!host)
return -ENOMEM; return -ENOMEM;
...@@ -2404,20 +2403,18 @@ static int __init atmci_probe(struct platform_device *pdev) ...@@ -2404,20 +2403,18 @@ static int __init atmci_probe(struct platform_device *pdev)
spin_lock_init(&host->lock); spin_lock_init(&host->lock);
INIT_LIST_HEAD(&host->queue); INIT_LIST_HEAD(&host->queue);
host->mck = clk_get(&pdev->dev, "mci_clk"); host->mck = devm_clk_get(&pdev->dev, "mci_clk");
if (IS_ERR(host->mck)) { if (IS_ERR(host->mck))
ret = PTR_ERR(host->mck); return PTR_ERR(host->mck);
goto err_clk_get;
}
ret = -ENOMEM; host->regs = devm_ioremap(&pdev->dev, regs->start, resource_size(regs));
host->regs = ioremap(regs->start, resource_size(regs));
if (!host->regs) if (!host->regs)
goto err_ioremap; return -ENOMEM;
ret = clk_prepare_enable(host->mck); ret = clk_prepare_enable(host->mck);
if (ret) if (ret)
goto err_request_irq; return ret;
atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST); atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST);
host->bus_hz = clk_get_rate(host->mck); host->bus_hz = clk_get_rate(host->mck);
clk_disable_unprepare(host->mck); clk_disable_unprepare(host->mck);
...@@ -2428,7 +2425,7 @@ static int __init atmci_probe(struct platform_device *pdev) ...@@ -2428,7 +2425,7 @@ static int __init atmci_probe(struct platform_device *pdev)
ret = request_irq(irq, atmci_interrupt, 0, dev_name(&pdev->dev), host); ret = request_irq(irq, atmci_interrupt, 0, dev_name(&pdev->dev), host);
if (ret) if (ret)
goto err_request_irq; return ret;
/* Get MCI capabilities and set operations according to it */ /* Get MCI capabilities and set operations according to it */
atmci_get_cap(host); atmci_get_cap(host);
...@@ -2500,12 +2497,6 @@ static int __init atmci_probe(struct platform_device *pdev) ...@@ -2500,12 +2497,6 @@ static int __init atmci_probe(struct platform_device *pdev)
if (host->dma.chan) if (host->dma.chan)
dma_release_channel(host->dma.chan); dma_release_channel(host->dma.chan);
free_irq(irq, host); free_irq(irq, host);
err_request_irq:
iounmap(host->regs);
err_ioremap:
clk_put(host->mck);
err_clk_get:
kfree(host);
return ret; return ret;
} }
...@@ -2533,10 +2524,6 @@ static int __exit atmci_remove(struct platform_device *pdev) ...@@ -2533,10 +2524,6 @@ static int __exit atmci_remove(struct platform_device *pdev)
dma_release_channel(host->dma.chan); dma_release_channel(host->dma.chan);
free_irq(platform_get_irq(pdev, 0), host); free_irq(platform_get_irq(pdev, 0), host);
iounmap(host->regs);
clk_put(host->mck);
kfree(host);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment