Re: [PATCH 1/2] usb: ehci-s5p/ohci-exynos: Fix compatible strings for the device

2012-12-19 Thread Vivek Gautam
CC: Doug Anderson


On Thu, Dec 13, 2012 at 9:39 PM, Vivek Gautam gautamvivek1...@gmail.com wrote:
 On Thu, Dec 13, 2012 at 8:22 PM, Vivek Gautam gautam.vi...@samsung.com 
 wrote:
 Using specific chip in compatible strings. Newer SOCs can claim
 device by using older string in the compatible list.

 Signed-off-by: Vivek Gautam gautam.vi...@samsung.com
 ---
  drivers/usb/host/ehci-s5p.c|2 +-
  drivers/usb/host/ohci-exynos.c |2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)

 diff --git a/drivers/usb/host/ehci-s5p.c b/drivers/usb/host/ehci-s5p.c
 index 319dcfa..f18e6ac 100644
 --- a/drivers/usb/host/ehci-s5p.c
 +++ b/drivers/usb/host/ehci-s5p.c
 @@ -266,7 +266,7 @@ static const struct dev_pm_ops s5p_ehci_pm_ops = {

  #ifdef CONFIG_OF
  static const struct of_device_id exynos_ehci_match[] = {
 -   { .compatible = samsung,exynos-ehci },
 +   { .compatible = samsung,exynos4210-ehci },
 {},
  };
  MODULE_DEVICE_TABLE(of, exynos_ehci_match);
 diff --git a/drivers/usb/host/ohci-exynos.c b/drivers/usb/host/ohci-exynos.c
 index aa3b884..77f2017 100644
 --- a/drivers/usb/host/ohci-exynos.c
 +++ b/drivers/usb/host/ohci-exynos.c
 @@ -267,7 +267,7 @@ static const struct dev_pm_ops exynos_ohci_pm_ops = {

  #ifdef CONFIG_OF
  static const struct of_device_id exynos_ohci_match[] = {
 -   { .compatible = samsung,exynos-ohci },
 +   { .compatible = samsung,exynos4210-ohci },
 {},
  };
  MODULE_DEVICE_TABLE(of, exynos_ohci_match);
 --
 1.7.6.5

 --
 To unsubscribe from this list: send the line unsubscribe linux-usb in
 the body of a message to majord...@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html



 --
 Thanks  Regards
 Vivek



-- 
Thanks  Regards
Vivek
--
To unsubscribe from this list: send the line unsubscribe linux-usb in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 1/2] usb: ehci-s5p/ohci-exynos: Fix compatible strings for the device

2012-12-13 Thread Vivek Gautam
Using specific chip in compatible strings. Newer SOCs can claim
device by using older string in the compatible list.

Signed-off-by: Vivek Gautam gautam.vi...@samsung.com
---
 drivers/usb/host/ehci-s5p.c|2 +-
 drivers/usb/host/ohci-exynos.c |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/host/ehci-s5p.c b/drivers/usb/host/ehci-s5p.c
index 319dcfa..f18e6ac 100644
--- a/drivers/usb/host/ehci-s5p.c
+++ b/drivers/usb/host/ehci-s5p.c
@@ -266,7 +266,7 @@ static const struct dev_pm_ops s5p_ehci_pm_ops = {
 
 #ifdef CONFIG_OF
 static const struct of_device_id exynos_ehci_match[] = {
-   { .compatible = samsung,exynos-ehci },
+   { .compatible = samsung,exynos4210-ehci },
{},
 };
 MODULE_DEVICE_TABLE(of, exynos_ehci_match);
diff --git a/drivers/usb/host/ohci-exynos.c b/drivers/usb/host/ohci-exynos.c
index aa3b884..77f2017 100644
--- a/drivers/usb/host/ohci-exynos.c
+++ b/drivers/usb/host/ohci-exynos.c
@@ -267,7 +267,7 @@ static const struct dev_pm_ops exynos_ohci_pm_ops = {
 
 #ifdef CONFIG_OF
 static const struct of_device_id exynos_ohci_match[] = {
-   { .compatible = samsung,exynos-ohci },
+   { .compatible = samsung,exynos4210-ohci },
{},
 };
 MODULE_DEVICE_TABLE(of, exynos_ohci_match);
-- 
1.7.6.5

--
To unsubscribe from this list: send the line unsubscribe linux-usb in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 1/2] usb: ehci-s5p/ohci-exynos: Fix compatible strings for the device

2012-12-13 Thread Vivek Gautam
On Thu, Dec 13, 2012 at 8:22 PM, Vivek Gautam gautam.vi...@samsung.com wrote:
 Using specific chip in compatible strings. Newer SOCs can claim
 device by using older string in the compatible list.

 Signed-off-by: Vivek Gautam gautam.vi...@samsung.com
 ---
  drivers/usb/host/ehci-s5p.c|2 +-
  drivers/usb/host/ohci-exynos.c |2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)

 diff --git a/drivers/usb/host/ehci-s5p.c b/drivers/usb/host/ehci-s5p.c
 index 319dcfa..f18e6ac 100644
 --- a/drivers/usb/host/ehci-s5p.c
 +++ b/drivers/usb/host/ehci-s5p.c
 @@ -266,7 +266,7 @@ static const struct dev_pm_ops s5p_ehci_pm_ops = {

  #ifdef CONFIG_OF
  static const struct of_device_id exynos_ehci_match[] = {
 -   { .compatible = samsung,exynos-ehci },
 +   { .compatible = samsung,exynos4210-ehci },
 {},
  };
  MODULE_DEVICE_TABLE(of, exynos_ehci_match);
 diff --git a/drivers/usb/host/ohci-exynos.c b/drivers/usb/host/ohci-exynos.c
 index aa3b884..77f2017 100644
 --- a/drivers/usb/host/ohci-exynos.c
 +++ b/drivers/usb/host/ohci-exynos.c
 @@ -267,7 +267,7 @@ static const struct dev_pm_ops exynos_ohci_pm_ops = {

  #ifdef CONFIG_OF
  static const struct of_device_id exynos_ohci_match[] = {
 -   { .compatible = samsung,exynos-ohci },
 +   { .compatible = samsung,exynos4210-ohci },
 {},
  };
  MODULE_DEVICE_TABLE(of, exynos_ohci_match);
 --
 1.7.6.5

 --
 To unsubscribe from this list: send the line unsubscribe linux-usb in
 the body of a message to majord...@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Thanks  Regards
Vivek
--
To unsubscribe from this list: send the line unsubscribe linux-usb in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html