From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755355Ab2LSNsI (ORCPT ); Wed, 19 Dec 2012 08:48:08 -0500 Received: from mail-lb0-f171.google.com ([209.85.217.171]:52493 "EHLO mail-lb0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751818Ab2LSNsB (ORCPT ); Wed, 19 Dec 2012 08:48:01 -0500 MIME-Version: 1.0 In-Reply-To: References: <1355410348-5129-1-git-send-email-gautam.vivek@samsung.com> <1355410348-5129-2-git-send-email-gautam.vivek@samsung.com> Date: Wed, 19 Dec 2012 19:17:59 +0530 Message-ID: Subject: Re: [PATCH 1/2] usb: ehci-s5p/ohci-exynos: Fix compatible strings for the device From: Vivek Gautam To: linux-usb@vger.kernel.org Cc: dianders@chromium.org, linux-samsung-soc@vger.kernel.org, devicetree-discuss@lists.ozlabs.org, linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org, stern@rowland.harvard.edu, balbi@ti.com, rob.herring@calxeda.com, grant.likely@secretlab.ca, kgene.kim@samsung.com, jg1.han@samsung.com, thomas.abraham@linaro.org, Vivek Gautam Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org CC: Doug Anderson On Thu, Dec 13, 2012 at 9:39 PM, Vivek Gautam wrote: > On Thu, Dec 13, 2012 at 8:22 PM, Vivek Gautam 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 >> --- >> 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 majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html > > > > -- > Thanks & Regards > Vivek -- Thanks & Regards Vivek