linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: exynos_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4
@ 2015-10-05  6:29 Anand Moon
  2015-10-05  6:29 ` [PATCH 2/2] ARM: multi_v7_defconfig: " Anand Moon
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Anand Moon @ 2015-10-05  6:29 UTC (permalink / raw)
  To: Russell King, Kukjin Kim, Krzysztof Kozlowski,
	Javier Martinez Canillas, Anand Moon, Lukasz Majewski,
	Thierry Reding, Andreas Faerber, Arnd Bergmann, Olof Johansson,
	Geert Uytterhoeven, Lee Jones, Tomeu Vizoso, Alexandre Belloni,
	Ray Jui
  Cc: linux-arm-kernel, linux-samsung-soc, linux-kernel

Enable CONFIG_USB_RTL8152 for Odroid-XU4.

Signed-off-by: Anand Moon <linux.amoon@gmail.com>
---
 arch/arm/configs/exynos_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/exynos_defconfig b/arch/arm/configs/exynos_defconfig
index 1ff2bfa..5d1937b 100644
--- a/arch/arm/configs/exynos_defconfig
+++ b/arch/arm/configs/exynos_defconfig
@@ -61,6 +61,7 @@ CONFIG_BLK_DEV_DM=y
 CONFIG_DM_CRYPT=m
 CONFIG_NETDEVICES=y
 CONFIG_SMSC911X=y
+CONFIG_USB_RTL8152=y
 CONFIG_USB_USBNET=y
 CONFIG_USB_NET_SMSC75XX=y
 CONFIG_USB_NET_SMSC95XX=y
-- 
2.1.4


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

* [PATCH 2/2] ARM: multi_v7_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4
  2015-10-05  6:29 [PATCH 1/2] ARM: exynos_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4 Anand Moon
@ 2015-10-05  6:29 ` Anand Moon
  2015-10-05  7:14   ` Lee Jones
  2015-10-05  6:38 ` [PATCH 1/2] ARM: exynos_defconfig: " Krzysztof Kozlowski
  2015-10-05  7:14 ` Lee Jones
  2 siblings, 1 reply; 7+ messages in thread
From: Anand Moon @ 2015-10-05  6:29 UTC (permalink / raw)
  To: Russell King, Kukjin Kim, Krzysztof Kozlowski,
	Javier Martinez Canillas, Anand Moon, Lukasz Majewski,
	Thierry Reding, Andreas Faerber, Arnd Bergmann, Olof Johansson,
	Geert Uytterhoeven, Lee Jones, Tomeu Vizoso, Alexandre Belloni,
	Ray Jui
  Cc: linux-arm-kernel, linux-samsung-soc, linux-kernel

Enable CONFIG_USB_RTL8152 for Odroid-XU4.

Signed-off-by: Anand Moon <linux.amoon@gmail.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 03deb7f..009d714 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -221,6 +221,7 @@ CONFIG_BROADCOM_PHY=y
 CONFIG_ICPLUS_PHY=y
 CONFIG_MICREL_PHY=y
 CONFIG_USB_PEGASUS=y
+CONFIG_USB_RTL8152=y
 CONFIG_USB_USBNET=y
 CONFIG_USB_NET_SMSC75XX=y
 CONFIG_USB_NET_SMSC95XX=y
-- 
2.1.4


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

* Re: [PATCH 1/2] ARM: exynos_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4
  2015-10-05  6:29 [PATCH 1/2] ARM: exynos_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4 Anand Moon
  2015-10-05  6:29 ` [PATCH 2/2] ARM: multi_v7_defconfig: " Anand Moon
@ 2015-10-05  6:38 ` Krzysztof Kozlowski
  2015-10-05  7:04   ` Anand Moon
  2015-10-05  7:14 ` Lee Jones
  2 siblings, 1 reply; 7+ messages in thread
From: Krzysztof Kozlowski @ 2015-10-05  6:38 UTC (permalink / raw)
  To: Anand Moon, Russell King, Kukjin Kim, Javier Martinez Canillas,
	Lukasz Majewski, Thierry Reding, Andreas Faerber, Arnd Bergmann,
	Olof Johansson, Geert Uytterhoeven, Lee Jones, Tomeu Vizoso,
	Alexandre Belloni, Ray Jui
  Cc: linux-arm-kernel, linux-samsung-soc, linux-kernel

On 05.10.2015 15:29, Anand Moon wrote:
> Enable CONFIG_USB_RTL8152 for Odroid-XU4.

Why?

Best regards,
Krzysztof

> 
> Signed-off-by: Anand Moon <linux.amoon@gmail.com>
> ---
>  arch/arm/configs/exynos_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/configs/exynos_defconfig b/arch/arm/configs/exynos_defconfig
> index 1ff2bfa..5d1937b 100644
> --- a/arch/arm/configs/exynos_defconfig
> +++ b/arch/arm/configs/exynos_defconfig
> @@ -61,6 +61,7 @@ CONFIG_BLK_DEV_DM=y
>  CONFIG_DM_CRYPT=m
>  CONFIG_NETDEVICES=y
>  CONFIG_SMSC911X=y
> +CONFIG_USB_RTL8152=y
>  CONFIG_USB_USBNET=y
>  CONFIG_USB_NET_SMSC75XX=y
>  CONFIG_USB_NET_SMSC95XX=y
> 


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

* Re: [PATCH 1/2] ARM: exynos_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4
  2015-10-05  6:38 ` [PATCH 1/2] ARM: exynos_defconfig: " Krzysztof Kozlowski
@ 2015-10-05  7:04   ` Anand Moon
  2015-10-05  7:06     ` Krzysztof Kozlowski
  0 siblings, 1 reply; 7+ messages in thread
From: Anand Moon @ 2015-10-05  7:04 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Russell King, Kukjin Kim, Javier Martinez Canillas,
	Lukasz Majewski, Thierry Reding, Andreas Faerber, Arnd Bergmann,
	Olof Johansson, Geert Uytterhoeven, Lee Jones, Tomeu Vizoso,
	Alexandre Belloni, Ray Jui, linux-arm-kernel,
	linux-samsung-soc@vger.kernel.org, Linux Kernel

hi Krzysztof,

On 5 October 2015 at 12:08, Krzysztof Kozlowski <k.kozlowski@samsung.com> wrote:
> On 05.10.2015 15:29, Anand Moon wrote:
>> Enable CONFIG_USB_RTL8152 for Odroid-XU4.
>
> Why?
>
> Best regards,
> Krzysztof
>
>>
>> Signed-off-by: Anand Moon <linux.amoon@gmail.com>
>> ---
>>  arch/arm/configs/exynos_defconfig | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/arch/arm/configs/exynos_defconfig b/arch/arm/configs/exynos_defconfig
>> index 1ff2bfa..5d1937b 100644
>> --- a/arch/arm/configs/exynos_defconfig
>> +++ b/arch/arm/configs/exynos_defconfig
>> @@ -61,6 +61,7 @@ CONFIG_BLK_DEV_DM=y
>>  CONFIG_DM_CRYPT=m
>>  CONFIG_NETDEVICES=y
>>  CONFIG_SMSC911X=y
>> +CONFIG_USB_RTL8152=y
>>  CONFIG_USB_USBNET=y
>>  CONFIG_USB_NET_SMSC75XX=y
>>  CONFIG_USB_NET_SMSC95XX=y
>>
>

Odroid XU4 supports RTL8152/RTL8153 Based USB 3.0 Ethernet Adapters.

Will send v2 version of the patch.

-Anand Moon

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

* Re: [PATCH 1/2] ARM: exynos_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4
  2015-10-05  7:04   ` Anand Moon
@ 2015-10-05  7:06     ` Krzysztof Kozlowski
  0 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2015-10-05  7:06 UTC (permalink / raw)
  To: Anand Moon
  Cc: Russell King, Kukjin Kim, Javier Martinez Canillas,
	Lukasz Majewski, Thierry Reding, Andreas Faerber, Arnd Bergmann,
	Olof Johansson, Geert Uytterhoeven, Lee Jones, Tomeu Vizoso,
	Alexandre Belloni, Ray Jui, linux-arm-kernel,
	linux-samsung-soc@vger.kernel.org, Linux Kernel

On 05.10.2015 16:04, Anand Moon wrote:
> hi Krzysztof,
> 
> On 5 October 2015 at 12:08, Krzysztof Kozlowski <k.kozlowski@samsung.com> wrote:
>> On 05.10.2015 15:29, Anand Moon wrote:
>>> Enable CONFIG_USB_RTL8152 for Odroid-XU4.
>>
>> Why?
>>
>> Best regards,
>> Krzysztof
>>
>>>
>>> Signed-off-by: Anand Moon <linux.amoon@gmail.com>
>>> ---
>>>  arch/arm/configs/exynos_defconfig | 1 +
>>>  1 file changed, 1 insertion(+)
>>>
>>> diff --git a/arch/arm/configs/exynos_defconfig b/arch/arm/configs/exynos_defconfig
>>> index 1ff2bfa..5d1937b 100644
>>> --- a/arch/arm/configs/exynos_defconfig
>>> +++ b/arch/arm/configs/exynos_defconfig
>>> @@ -61,6 +61,7 @@ CONFIG_BLK_DEV_DM=y
>>>  CONFIG_DM_CRYPT=m
>>>  CONFIG_NETDEVICES=y
>>>  CONFIG_SMSC911X=y
>>> +CONFIG_USB_RTL8152=y
>>>  CONFIG_USB_USBNET=y
>>>  CONFIG_USB_NET_SMSC75XX=y
>>>  CONFIG_USB_NET_SMSC95XX=y
>>>
>>
> 
> Odroid XU4 supports RTL8152/RTL8153 Based USB 3.0 Ethernet Adapters.
> 
> Will send v2 version of the patch.

Right, just add that sentence to both of the patches. It will be enough.

Best regards,
Krzysztof


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

* Re: [PATCH 1/2] ARM: exynos_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4
  2015-10-05  6:29 [PATCH 1/2] ARM: exynos_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4 Anand Moon
  2015-10-05  6:29 ` [PATCH 2/2] ARM: multi_v7_defconfig: " Anand Moon
  2015-10-05  6:38 ` [PATCH 1/2] ARM: exynos_defconfig: " Krzysztof Kozlowski
@ 2015-10-05  7:14 ` Lee Jones
  2 siblings, 0 replies; 7+ messages in thread
From: Lee Jones @ 2015-10-05  7:14 UTC (permalink / raw)
  To: Anand Moon
  Cc: Russell King, Kukjin Kim, Krzysztof Kozlowski,
	Javier Martinez Canillas, Lukasz Majewski, Thierry Reding,
	Andreas Faerber, Arnd Bergmann, Olof Johansson,
	Geert Uytterhoeven, Tomeu Vizoso, Alexandre Belloni, Ray Jui,
	linux-arm-kernel, linux-samsung-soc, linux-kernel

On Mon, 05 Oct 2015, Anand Moon wrote:

> Enable CONFIG_USB_RTL8152 for Odroid-XU4.
> 
> Signed-off-by: Anand Moon <linux.amoon@gmail.com>
> ---
>  arch/arm/configs/exynos_defconfig | 1 +
>  1 file changed, 1 insertion(+)

Why have you sent this to me?

Please be more selective with your recipient list.  

> diff --git a/arch/arm/configs/exynos_defconfig b/arch/arm/configs/exynos_defconfig
> index 1ff2bfa..5d1937b 100644
> --- a/arch/arm/configs/exynos_defconfig
> +++ b/arch/arm/configs/exynos_defconfig
> @@ -61,6 +61,7 @@ CONFIG_BLK_DEV_DM=y
>  CONFIG_DM_CRYPT=m
>  CONFIG_NETDEVICES=y
>  CONFIG_SMSC911X=y
> +CONFIG_USB_RTL8152=y
>  CONFIG_USB_USBNET=y
>  CONFIG_USB_NET_SMSC75XX=y
>  CONFIG_USB_NET_SMSC95XX=y

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* Re: [PATCH 2/2] ARM: multi_v7_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4
  2015-10-05  6:29 ` [PATCH 2/2] ARM: multi_v7_defconfig: " Anand Moon
@ 2015-10-05  7:14   ` Lee Jones
  0 siblings, 0 replies; 7+ messages in thread
From: Lee Jones @ 2015-10-05  7:14 UTC (permalink / raw)
  To: Anand Moon
  Cc: Russell King, Kukjin Kim, Krzysztof Kozlowski,
	Javier Martinez Canillas, Lukasz Majewski, Thierry Reding,
	Andreas Faerber, Arnd Bergmann, Olof Johansson,
	Geert Uytterhoeven, Tomeu Vizoso, Alexandre Belloni, Ray Jui,
	linux-arm-kernel, linux-samsung-soc, linux-kernel

On Mon, 05 Oct 2015, Anand Moon wrote:

> Enable CONFIG_USB_RTL8152 for Odroid-XU4.
> 
> Signed-off-by: Anand Moon <linux.amoon@gmail.com>
> ---
>  arch/arm/configs/multi_v7_defconfig | 1 +
>  1 file changed, 1 insertion(+)

Why have you sent this to me?

Please be more selective with your recipient list.  

> diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
> index 03deb7f..009d714 100644
> --- a/arch/arm/configs/multi_v7_defconfig
> +++ b/arch/arm/configs/multi_v7_defconfig
> @@ -221,6 +221,7 @@ CONFIG_BROADCOM_PHY=y
>  CONFIG_ICPLUS_PHY=y
>  CONFIG_MICREL_PHY=y
>  CONFIG_USB_PEGASUS=y
> +CONFIG_USB_RTL8152=y
>  CONFIG_USB_USBNET=y
>  CONFIG_USB_NET_SMSC75XX=y
>  CONFIG_USB_NET_SMSC95XX=y

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

end of thread, other threads:[~2015-10-05  7:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-05  6:29 [PATCH 1/2] ARM: exynos_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4 Anand Moon
2015-10-05  6:29 ` [PATCH 2/2] ARM: multi_v7_defconfig: " Anand Moon
2015-10-05  7:14   ` Lee Jones
2015-10-05  6:38 ` [PATCH 1/2] ARM: exynos_defconfig: " Krzysztof Kozlowski
2015-10-05  7:04   ` Anand Moon
2015-10-05  7:06     ` Krzysztof Kozlowski
2015-10-05  7:14 ` Lee Jones

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