public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] m28evk: Remove CONFIG_NET_MULTI option
@ 2012-01-10 19:03 Fabio Estevam
  2012-01-10 19:03 ` [U-Boot] [PATCH 2/3] efika0: " Fabio Estevam
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Fabio Estevam @ 2012-01-10 19:03 UTC (permalink / raw)
  To: u-boot

CONFIG_NET_MULTI is not used anymore, so remove it from board file.

Cc: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/m28evk.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/include/configs/m28evk.h b/include/configs/m28evk.h
index 39c841f..51eb1c1 100644
--- a/include/configs/m28evk.h
+++ b/include/configs/m28evk.h
@@ -179,7 +179,6 @@
  * Ethernet on SOC (FEC)
  */
 #ifdef	CONFIG_CMD_NET
-#define	CONFIG_NET_MULTI
 #define	CONFIG_ETHPRIME			"FEC0"
 #define	CONFIG_FEC_MXC
 #define	CONFIG_FEC_MXC_MULTI
-- 
1.7.1

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

* [U-Boot] [PATCH 2/3] efika0: Remove CONFIG_NET_MULTI option
  2012-01-10 19:03 [U-Boot] [PATCH 1/3] m28evk: Remove CONFIG_NET_MULTI option Fabio Estevam
@ 2012-01-10 19:03 ` Fabio Estevam
  2012-01-10 19:14   ` [U-Boot] [PATCH v2 2/3] efika: " Fabio Estevam
  2012-01-10 19:03 ` [U-Boot] [PATCH 3/3] flea3: " Fabio Estevam
  2012-01-10 19:57 ` [U-Boot] [PATCH 1/3] m28evk: " Marek Vasut
  2 siblings, 1 reply; 8+ messages in thread
From: Fabio Estevam @ 2012-01-10 19:03 UTC (permalink / raw)
  To: u-boot

CONFIG_NET_MULTI is not used anymore, so remove it from board file.

Cc: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/efikamx.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/include/configs/efikamx.h b/include/configs/efikamx.h
index 522487b..e2f0f74 100644
--- a/include/configs/efikamx.h
+++ b/include/configs/efikamx.h
@@ -206,7 +206,6 @@
 /* USB NET */
 #ifdef	CONFIG_CMD_NET
 #define	CONFIG_USB_ETHER_ASIX
-#define	CONFIG_NET_MULTI
 #define	CONFIG_CMD_PING
 #define	CONFIG_CMD_DHCP
 #endif
-- 
1.7.1

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

* [U-Boot] [PATCH 3/3] flea3: Remove CONFIG_NET_MULTI option
  2012-01-10 19:03 [U-Boot] [PATCH 1/3] m28evk: Remove CONFIG_NET_MULTI option Fabio Estevam
  2012-01-10 19:03 ` [U-Boot] [PATCH 2/3] efika0: " Fabio Estevam
@ 2012-01-10 19:03 ` Fabio Estevam
  2012-01-10 19:57 ` [U-Boot] [PATCH 1/3] m28evk: " Marek Vasut
  2 siblings, 0 replies; 8+ messages in thread
From: Fabio Estevam @ 2012-01-10 19:03 UTC (permalink / raw)
  To: u-boot

CONFIG_NET_MULTI is not used anymore, so remove it from board file.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/flea3.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/include/configs/flea3.h b/include/configs/flea3.h
index aac3930..649e272 100644
--- a/include/configs/flea3.h
+++ b/include/configs/flea3.h
@@ -113,7 +113,6 @@
 /*
  * Ethernet on SOC (FEC)
  */
-#define CONFIG_NET_MULTI
 #define CONFIG_FEC_MXC
 #define IMX_FEC_BASE	FEC_BASE_ADDR
 #define CONFIG_PHYLIB
-- 
1.7.1

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

* [U-Boot] [PATCH v2 2/3] efika: Remove CONFIG_NET_MULTI option
  2012-01-10 19:03 ` [U-Boot] [PATCH 2/3] efika0: " Fabio Estevam
@ 2012-01-10 19:14   ` Fabio Estevam
  2012-01-10 19:57     ` Marek Vasut
  0 siblings, 1 reply; 8+ messages in thread
From: Fabio Estevam @ 2012-01-10 19:14 UTC (permalink / raw)
  To: u-boot

CONFIG_NET_MULTI is not used anymore, so remove it from board file.

Cc: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v1:
- Fix typo in board name
 include/configs/efikamx.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/include/configs/efikamx.h b/include/configs/efikamx.h
index 522487b..e2f0f74 100644
--- a/include/configs/efikamx.h
+++ b/include/configs/efikamx.h
@@ -206,7 +206,6 @@
 /* USB NET */
 #ifdef	CONFIG_CMD_NET
 #define	CONFIG_USB_ETHER_ASIX
-#define	CONFIG_NET_MULTI
 #define	CONFIG_CMD_PING
 #define	CONFIG_CMD_DHCP
 #endif
-- 
1.7.1

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

* [U-Boot] [PATCH 1/3] m28evk: Remove CONFIG_NET_MULTI option
  2012-01-10 19:03 [U-Boot] [PATCH 1/3] m28evk: Remove CONFIG_NET_MULTI option Fabio Estevam
  2012-01-10 19:03 ` [U-Boot] [PATCH 2/3] efika0: " Fabio Estevam
  2012-01-10 19:03 ` [U-Boot] [PATCH 3/3] flea3: " Fabio Estevam
@ 2012-01-10 19:57 ` Marek Vasut
  2012-01-10 20:00   ` Fabio Estevam
  2 siblings, 1 reply; 8+ messages in thread
From: Marek Vasut @ 2012-01-10 19:57 UTC (permalink / raw)
  To: u-boot

> CONFIG_NET_MULTI is not used anymore, so remove it from board file.
> 
> Cc: Marek Vasut <marek.vasut@gmail.com>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  include/configs/m28evk.h |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> diff --git a/include/configs/m28evk.h b/include/configs/m28evk.h
> index 39c841f..51eb1c1 100644
> --- a/include/configs/m28evk.h
> +++ b/include/configs/m28evk.h
> @@ -179,7 +179,6 @@
>   * Ethernet on SOC (FEC)
>   */
>  #ifdef	CONFIG_CMD_NET
> -#define	CONFIG_NET_MULTI
>  #define	CONFIG_ETHPRIME			"FEC0"
>  #define	CONFIG_FEC_MXC
>  #define	CONFIG_FEC_MXC_MULTI

Acked-by: Marek Vasut <marek.vasut@gmail.com>

Though you should drop it from all other board files (hint: git grep 
CONFIG_NET_MULTI)

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

* [U-Boot] [PATCH v2 2/3] efika: Remove CONFIG_NET_MULTI option
  2012-01-10 19:14   ` [U-Boot] [PATCH v2 2/3] efika: " Fabio Estevam
@ 2012-01-10 19:57     ` Marek Vasut
  0 siblings, 0 replies; 8+ messages in thread
From: Marek Vasut @ 2012-01-10 19:57 UTC (permalink / raw)
  To: u-boot

> CONFIG_NET_MULTI is not used anymore, so remove it from board file.
> 
> Cc: Marek Vasut <marek.vasut@gmail.com>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
> Changes since v1:
> - Fix typo in board name
>  include/configs/efikamx.h |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> diff --git a/include/configs/efikamx.h b/include/configs/efikamx.h
> index 522487b..e2f0f74 100644
> --- a/include/configs/efikamx.h
> +++ b/include/configs/efikamx.h
> @@ -206,7 +206,6 @@
>  /* USB NET */
>  #ifdef	CONFIG_CMD_NET
>  #define	CONFIG_USB_ETHER_ASIX
> -#define	CONFIG_NET_MULTI
>  #define	CONFIG_CMD_PING
>  #define	CONFIG_CMD_DHCP
>  #endif

Acked-by: Marek Vasut <marek.vasut@gmail.com>

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

* [U-Boot] [PATCH 1/3] m28evk: Remove CONFIG_NET_MULTI option
  2012-01-10 19:57 ` [U-Boot] [PATCH 1/3] m28evk: " Marek Vasut
@ 2012-01-10 20:00   ` Fabio Estevam
  2012-01-11  8:09     ` Stefano Babic
  0 siblings, 1 reply; 8+ messages in thread
From: Fabio Estevam @ 2012-01-10 20:00 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 10, 2012 at 5:57 PM, Marek Vasut <marek.vasut@gmail.com> wrote:

> Acked-by: Marek Vasut <marek.vasut@gmail.com>
>
> Though you should drop it from all other board files (hint: git grep
> CONFIG_NET_MULTI)

Ok, will submit a patch for removing it from other board files.

Regards,

Fabio Estevam

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

* [U-Boot] [PATCH 1/3] m28evk: Remove CONFIG_NET_MULTI option
  2012-01-10 20:00   ` Fabio Estevam
@ 2012-01-11  8:09     ` Stefano Babic
  0 siblings, 0 replies; 8+ messages in thread
From: Stefano Babic @ 2012-01-11  8:09 UTC (permalink / raw)
  To: u-boot

On 10/01/2012 21:00, Fabio Estevam wrote:
> On Tue, Jan 10, 2012 at 5:57 PM, Marek Vasut <marek.vasut@gmail.com> wrote:
> 
>> Acked-by: Marek Vasut <marek.vasut@gmail.com>
>>
>> Though you should drop it from all other board files (hint: git grep
>> CONFIG_NET_MULTI)
> 
> Ok, will submit a patch for removing it from other board files.
> 

Maybe it is worth to have a single patch dropping CONFIG_NET_MULTI from
all boards instead of single patches - I assume that the patchs's length
remains under the ML limit.

Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

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

end of thread, other threads:[~2012-01-11  8:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-10 19:03 [U-Boot] [PATCH 1/3] m28evk: Remove CONFIG_NET_MULTI option Fabio Estevam
2012-01-10 19:03 ` [U-Boot] [PATCH 2/3] efika0: " Fabio Estevam
2012-01-10 19:14   ` [U-Boot] [PATCH v2 2/3] efika: " Fabio Estevam
2012-01-10 19:57     ` Marek Vasut
2012-01-10 19:03 ` [U-Boot] [PATCH 3/3] flea3: " Fabio Estevam
2012-01-10 19:57 ` [U-Boot] [PATCH 1/3] m28evk: " Marek Vasut
2012-01-10 20:00   ` Fabio Estevam
2012-01-11  8:09     ` Stefano Babic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox