From: peter.chen@freescale.com (Peter Chen)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 04/10] usb: chipidea: usbmisc_imx: remove the controller's clock information
Date: Tue, 5 Nov 2013 09:55:19 +0800 [thread overview]
Message-ID: <1383616525-10769-5-git-send-email-peter.chen@freescale.com> (raw)
In-Reply-To: <1383616525-10769-1-git-send-email-peter.chen@freescale.com>
Currently, the usbmisc is just an API supplier for controller
driver, the controller calls related APIs to handle different
things among the SoCs, before calling it, the clock must
be on. So the clock operation is useless for usbmisc, it also
increases the difficulties to manage the clock, especially at
runtime power management situation.
Signed-off-by: Peter Chen <peter.chen@freescale.com>
---
drivers/usb/chipidea/usbmisc_imx.c | 18 ------------------
1 files changed, 0 insertions(+), 18 deletions(-)
diff --git a/drivers/usb/chipidea/usbmisc_imx.c b/drivers/usb/chipidea/usbmisc_imx.c
index 8a1094b..1fd9a12 100644
--- a/drivers/usb/chipidea/usbmisc_imx.c
+++ b/drivers/usb/chipidea/usbmisc_imx.c
@@ -11,7 +11,6 @@
#include <linux/module.h>
#include <linux/of_platform.h>
-#include <linux/clk.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/delay.h>
@@ -40,7 +39,6 @@ struct usbmisc_ops {
struct imx_usbmisc {
void __iomem *base;
spinlock_t lock;
- struct clk *clk;
const struct usbmisc_ops *ops;
};
@@ -177,7 +175,6 @@ static int usbmisc_imx_probe(struct platform_device *pdev)
{
struct resource *res;
struct imx_usbmisc *data;
- int ret;
struct of_device_id *tmp_dev;
if (usbmisc)
@@ -194,20 +191,6 @@ static int usbmisc_imx_probe(struct platform_device *pdev)
if (IS_ERR(data->base))
return PTR_ERR(data->base);
- data->clk = devm_clk_get(&pdev->dev, NULL);
- if (IS_ERR(data->clk)) {
- dev_err(&pdev->dev,
- "failed to get clock, err=%ld\n", PTR_ERR(data->clk));
- return PTR_ERR(data->clk);
- }
-
- ret = clk_prepare_enable(data->clk);
- if (ret) {
- dev_err(&pdev->dev,
- "clk_prepare_enable failed, err=%d\n", ret);
- return ret;
- }
-
tmp_dev = (struct of_device_id *)
of_match_device(usbmisc_imx_dt_ids, &pdev->dev);
data->ops = (const struct usbmisc_ops *)tmp_dev->data;
@@ -218,7 +201,6 @@ static int usbmisc_imx_probe(struct platform_device *pdev)
static int usbmisc_imx_remove(struct platform_device *pdev)
{
- clk_disable_unprepare(usbmisc->clk);
usbmisc = NULL;
return 0;
}
--
1.7.1
next prev parent reply other threads:[~2013-11-05 1:55 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-05 1:55 [PATCH v3 00/10] Add power management support for chipidea Peter Chen
2013-11-05 1:55 ` [PATCH v3 01/10] usb: chipidea: Add power management support Peter Chen
2013-11-05 1:55 ` [PATCH v3 02/10] usb: chipidea: imx: add " Peter Chen
2013-11-05 1:55 ` [PATCH v3 03/10] usb: chipidea: add wakeup interrupt handler Peter Chen
2013-11-05 1:55 ` Peter Chen [this message]
2013-11-05 1:55 ` [PATCH v3 05/10] usb: chipidea: usbmisc_imx: add set_wakup API Peter Chen
2013-11-05 1:55 ` [PATCH v3 06/10] usb: chipidea: imx: call set_wakeup when necessary Peter Chen
2013-11-05 1:55 ` [PATCH v3 07/10] usb: chipidea: imx: Enable runtime pm support for imx6q Peter Chen
2013-11-05 1:55 ` [PATCH v3 08/10] usb: chipidea: host: add quirk for ehci operation Peter Chen
2013-11-05 1:55 ` [PATCH v3 09/10] usb: chipidea: host: add ehci quirk for imx controller Peter Chen
2013-11-05 1:55 ` [PATCH v3 10/10] usb: chipidea: imx: Enable CI_HDRC_IMX_EHCI_QUIRK Peter Chen
2013-12-03 21:50 ` Marc Kleine-Budde
2013-12-04 1:40 ` Peter Chen
2013-12-04 8:33 ` Marc Kleine-Budde
2013-12-04 13:05 ` Peter Chen
2013-12-03 18:15 ` [PATCH v3 00/10] Add power management support for chipidea Greg KH
2013-12-04 1:35 ` Peter Chen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1383616525-10769-5-git-send-email-peter.chen@freescale.com \
--to=peter.chen@freescale.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).