summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0034-usb-musb-omap-fix-the-error-check-for-pm_runtime_get.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0034-usb-musb-omap-fix-the-error-check-for-pm_runtime_get.patch')
-rw-r--r--recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0034-usb-musb-omap-fix-the-error-check-for-pm_runtime_get.patch48
1 files changed, 48 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0034-usb-musb-omap-fix-the-error-check-for-pm_runtime_get.patch b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0034-usb-musb-omap-fix-the-error-check-for-pm_runtime_get.patch
new file mode 100644
index 00000000..035b0002
--- /dev/null
+++ b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.17/0034-usb-musb-omap-fix-the-error-check-for-pm_runtime_get.patch
@@ -0,0 +1,48 @@
1From 150f1a9111e30cc70efdac57e72af7d537754099 Mon Sep 17 00:00:00 2001
2From: Shubhrajyoti D <shubhrajyoti@ti.com>
3Date: Thu, 22 Mar 2012 12:48:06 +0530
4Subject: [PATCH 034/165] usb: musb: omap: fix the error check for
5 pm_runtime_get_sync
6
7commit ad579699c4f0274bf522a9252ff9b20c72197e48 upstream.
8
9pm_runtime_get_sync returns a signed integer. In case of errors
10it returns a negative value. This patch fixes the error check
11by making it signed instead of unsigned thus preventing register
12access if get_sync_fails. Also passes the error cause to the
13debug message.
14
15Cc: Kishon Vijay Abraham I <kishon@ti.com>
16Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
17Signed-off-by: Felipe Balbi <balbi@ti.com>
18Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
19---
20 drivers/usb/musb/omap2430.c | 5 +++--
21 1 files changed, 3 insertions(+), 2 deletions(-)
22
23diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c
24index bd93e9f..522ac37 100644
25--- a/drivers/usb/musb/omap2430.c
26+++ b/drivers/usb/musb/omap2430.c
27@@ -283,7 +283,8 @@ static void musb_otg_notifier_work(struct work_struct *data_notifier_work)
28
29 static int omap2430_musb_init(struct musb *musb)
30 {
31- u32 l, status = 0;
32+ u32 l;
33+ int status = 0;
34 struct device *dev = musb->controller;
35 struct musb_hdrc_platform_data *plat = dev->platform_data;
36 struct omap_musb_board_data *data = plat->board_data;
37@@ -302,7 +303,7 @@ static int omap2430_musb_init(struct musb *musb)
38
39 status = pm_runtime_get_sync(dev);
40 if (status < 0) {
41- dev_err(dev, "pm_runtime_get_sync FAILED");
42+ dev_err(dev, "pm_runtime_get_sync FAILED %d\n", status);
43 goto err1;
44 }
45
46--
471.7.7.6
48