linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: Remove references to non-existent PLAT_S5P symbol
@ 2014-10-06 15:47 Sylwester Nawrocki
  2014-10-06 16:38 ` Paul Bolle
  2014-10-07  0:46 ` Jingoo Han
  0 siblings, 2 replies; 3+ messages in thread
From: Sylwester Nawrocki @ 2014-10-06 15:47 UTC (permalink / raw)
  To: gregkh
  Cc: linux-usb, linux-kernel, pebolle, jg1.han, linux-samsung-soc,
	Sylwester Nawrocki

The PLAT_S5P Kconfig symbol was removed in commit d78c16ccde96
("ARM: SAMSUNG: Remove remaining legacy code"). There are still
some references left, fix that by replacing them with ARCH_S5PV210.

Reported-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
---
 drivers/usb/host/Kconfig |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index 82800a7..6f1d48e 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -220,7 +220,7 @@ config USB_EHCI_SH
 
 config USB_EHCI_EXYNOS
        tristate "EHCI support for Samsung S5P/EXYNOS SoC Series"
-       depends on PLAT_S5P || ARCH_EXYNOS
+       depends on ARCH_S5PV210 || ARCH_EXYNOS
        help
 	Enable support for the Samsung Exynos SOC's on-chip EHCI controller.
 
@@ -527,7 +527,7 @@ config USB_OHCI_SH
 
 config USB_OHCI_EXYNOS
 	tristate "OHCI support for Samsung S5P/EXYNOS SoC Series"
-	depends on PLAT_S5P || ARCH_EXYNOS
+	depends on ARCH_S5PV210 || ARCH_EXYNOS
 	help
 	 Enable support for the Samsung Exynos SOC's on-chip OHCI controller.
 
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] usb: Remove references to non-existent PLAT_S5P symbol
  2014-10-06 15:47 [PATCH] usb: Remove references to non-existent PLAT_S5P symbol Sylwester Nawrocki
@ 2014-10-06 16:38 ` Paul Bolle
  2014-10-07  0:46 ` Jingoo Han
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Bolle @ 2014-10-06 16:38 UTC (permalink / raw)
  To: Sylwester Nawrocki
  Cc: gregkh, linux-usb, linux-kernel, jg1.han, linux-samsung-soc

On Mon, 2014-10-06 at 17:47 +0200, Sylwester Nawrocki wrote:
> The PLAT_S5P Kconfig symbol was removed in commit d78c16ccde96
> ("ARM: SAMSUNG: Remove remaining legacy code"). There are still
> some references left, fix that by replacing them with ARCH_S5PV210.
> 
> Reported-by: Paul Bolle <pebolle@tiscali.nl>
> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>

As with the "[media]" patch: should
     Fixes: d78c16ccde96 ("ARM: SAMSUNG: Remove remaining legacy code")

be added so this will end up in stable for v3.17?

>  drivers/usb/host/Kconfig |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
> index 82800a7..6f1d48e 100644
> --- a/drivers/usb/host/Kconfig
> +++ b/drivers/usb/host/Kconfig
> @@ -220,7 +220,7 @@ config USB_EHCI_SH
>  
>  config USB_EHCI_EXYNOS
>         tristate "EHCI support for Samsung S5P/EXYNOS SoC Series"
> -       depends on PLAT_S5P || ARCH_EXYNOS
> +       depends on ARCH_S5PV210 || ARCH_EXYNOS
>         help
>  	Enable support for the Samsung Exynos SOC's on-chip EHCI controller.
>  
> @@ -527,7 +527,7 @@ config USB_OHCI_SH
>  
>  config USB_OHCI_EXYNOS
>  	tristate "OHCI support for Samsung S5P/EXYNOS SoC Series"
> -	depends on PLAT_S5P || ARCH_EXYNOS
> +	depends on ARCH_S5PV210 || ARCH_EXYNOS
>  	help
>  	 Enable support for the Samsung Exynos SOC's on-chip OHCI controller.
>  

Thanks again!


Paul Bolle


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] usb: Remove references to non-existent PLAT_S5P symbol
  2014-10-06 15:47 [PATCH] usb: Remove references to non-existent PLAT_S5P symbol Sylwester Nawrocki
  2014-10-06 16:38 ` Paul Bolle
@ 2014-10-07  0:46 ` Jingoo Han
  1 sibling, 0 replies; 3+ messages in thread
From: Jingoo Han @ 2014-10-07  0:46 UTC (permalink / raw)
  To: 'Sylwester Nawrocki'
  Cc: 'Greg Kroah-Hartman',
	linux-usb, linux-kernel, pebolle, linux-samsung-soc,
	'Jingoo Han'

On Tuesday, October 07, 2014 12:47 AM, Sylwester Nawrocki wrote:
> 
> The PLAT_S5P Kconfig symbol was removed in commit d78c16ccde96
> ("ARM: SAMSUNG: Remove remaining legacy code"). There are still
> some references left, fix that by replacing them with ARCH_S5PV210.
> 
> Reported-by: Paul Bolle <pebolle@tiscali.nl>
> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>

Acked-by: Jingoo Han <jg1.han@samsung.com>

Best regards,
Jingoo Han

> ---
>  drivers/usb/host/Kconfig |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
> index 82800a7..6f1d48e 100644
> --- a/drivers/usb/host/Kconfig
> +++ b/drivers/usb/host/Kconfig
> @@ -220,7 +220,7 @@ config USB_EHCI_SH
> 
>  config USB_EHCI_EXYNOS
>         tristate "EHCI support for Samsung S5P/EXYNOS SoC Series"
> -       depends on PLAT_S5P || ARCH_EXYNOS
> +       depends on ARCH_S5PV210 || ARCH_EXYNOS
>         help
>  	Enable support for the Samsung Exynos SOC's on-chip EHCI controller.
> 
> @@ -527,7 +527,7 @@ config USB_OHCI_SH
> 
>  config USB_OHCI_EXYNOS
>  	tristate "OHCI support for Samsung S5P/EXYNOS SoC Series"
> -	depends on PLAT_S5P || ARCH_EXYNOS
> +	depends on ARCH_S5PV210 || ARCH_EXYNOS
>  	help
>  	 Enable support for the Samsung Exynos SOC's on-chip OHCI controller.
> 
> --
> 1.7.9.5


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-10-07  0:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-06 15:47 [PATCH] usb: Remove references to non-existent PLAT_S5P symbol Sylwester Nawrocki
2014-10-06 16:38 ` Paul Bolle
2014-10-07  0:46 ` Jingoo Han

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).