[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1341997995-14020-3-git-send-email-tarun.kanti@ti.com>
Date: Wed, 11 Jul 2012 14:43:15 +0530
From: Tarun Kanti DebBarma <tarun.kanti@...com>
To: <linux-omap@...r.kernel.org>
CC: <linux-arm-kernel@...ts.infradead.org>,
<linux-kernel@...r.kernel.org>,
Tarun Kanti DebBarma <tarun.kanti@...com>,
Kevin Hilman <khilman@...com>, Rajendra Nayak <rnayak@...com>,
Santosh Shilimkar <santosh.shilimkar@...com>,
"Cousson, Benoit" <b-cousson@...com>,
Paul Walmsley <paul@...an.com>
Subject: [PATCH 2/2] gpio/omap: add *remove* callback in platform_driver
Add *remove* callback so that necessary cleanup operations are
performed when device is unregistered. The device is deleted
from the list and associated clock handle is released by
calling clk_put() and irq descriptor is released using the
irq_free_desc() api.
Signed-off-by: Tarun Kanti DebBarma <tarun.kanti@...com>
Reported-by: Paul Walmsley <paul@...an.com>
Reviewed-by: Jon Hunter <jon-hunter@...com>
Cc: Kevin Hilman <khilman@...com>
Cc: Rajendra Nayak <rnayak@...com>
Cc: Santosh Shilimkar <santosh.shilimkar@...com>
Cc: Cousson, Benoit <b-cousson@...com>
Cc: Paul Walmsley <paul@...an.com>
---
drivers/gpio/gpio-omap.c | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c
index afecdcc..08929d5 100644
--- a/drivers/gpio/gpio-omap.c
+++ b/drivers/gpio/gpio-omap.c
@@ -1140,6 +1140,35 @@ static int __devinit omap_gpio_probe(struct platform_device *pdev)
return ret;
}
+/**
+ * omap_gpio_remove - cleanup a registered gpio device
+ * @pdev: pointer to current gpio platform device
+ *
+ * Called by driver framework whenever a gpio device is unregistered.
+ * GPIO is deleted from the list and associated clock handle freed.
+ */
+static int __devexit omap_gpio_remove(struct platform_device *pdev)
+{
+ struct device *dev = &pdev->dev;
+ struct gpio_bank *bank;
+ unsigned long flags;
+ int ret = -EINVAL;
+
+ list_for_each_entry(bank, &omap_gpio_list, node) {
+ spin_lock_irqsave(&bank->lock, flags);
+ if (bank->dev == dev) {
+ list_del(&bank->node);
+ clk_put(bank->dbck);
+ irq_free_desc(bank->irq_base);
+ ret = 0;
+ spin_unlock_irqrestore(&bank->lock, flags);
+ break;
+ }
+ spin_unlock_irqrestore(&bank->lock, flags);
+ }
+ return ret;
+}
+
#ifdef CONFIG_ARCH_OMAP2PLUS
#if defined(CONFIG_PM_RUNTIME)
@@ -1466,6 +1495,7 @@ MODULE_DEVICE_TABLE(of, omap_gpio_match);
static struct platform_driver omap_gpio_driver = {
.probe = omap_gpio_probe,
+ .remove = __devexit_p(omap_gpio_remove),
.driver = {
.name = "omap_gpio",
.pm = &gpio_pm_ops,
--
1.7.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists