All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] nios2: clean up macros that do not need a value in board header
@ 2015-10-29  8:45 Thomas Chou
  2015-10-29  8:45 ` [U-Boot] [PATCH 2/2] nios2: enable setexpr command in defconfig Thomas Chou
  2015-11-03  5:18 ` [U-Boot] [PATCH 1/2] nios2: clean up macros that do not need a value in board header Thomas Chou
  0 siblings, 2 replies; 5+ messages in thread
From: Thomas Chou @ 2015-10-29  8:45 UTC (permalink / raw)
  To: u-boot

Clean up macros that do not need a value as suggested by
Marek.

Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
---
 include/configs/nios2-generic.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/configs/nios2-generic.h b/include/configs/nios2-generic.h
index 4283c95..144534d 100644
--- a/include/configs/nios2-generic.h
+++ b/include/configs/nios2-generic.h
@@ -35,10 +35,10 @@
 /*
  * MII/PHY
  */
-#define CONFIG_CMD_MII			1
-#define CONFIG_PHY_GIGE			1
-#define CONFIG_SYS_FAULT_ECHO_LINK_DOWN	1
-#define CONFIG_PHY_MARVELL		1
+#define CONFIG_CMD_MII
+#define CONFIG_PHY_GIGE
+#define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
+#define CONFIG_PHY_MARVELL
 
 /*
  * BOOTP options
-- 
2.1.4

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

* [U-Boot] [PATCH 2/2] nios2: enable setexpr command in defconfig
  2015-10-29  8:45 [U-Boot] [PATCH 1/2] nios2: clean up macros that do not need a value in board header Thomas Chou
@ 2015-10-29  8:45 ` Thomas Chou
  2015-10-29 13:15   ` Marek Vasut
  2015-11-03  5:18   ` Thomas Chou
  2015-11-03  5:18 ` [U-Boot] [PATCH 1/2] nios2: clean up macros that do not need a value in board header Thomas Chou
  1 sibling, 2 replies; 5+ messages in thread
From: Thomas Chou @ 2015-10-29  8:45 UTC (permalink / raw)
  To: u-boot

Enable setexpr command in defconfig because it is really
useful as suggested by Marek.

Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
---
 configs/nios2-generic_defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/configs/nios2-generic_defconfig b/configs/nios2-generic_defconfig
index d4403fc..0a6de6f 100644
--- a/configs/nios2-generic_defconfig
+++ b/configs/nios2-generic_defconfig
@@ -10,7 +10,6 @@ CONFIG_CMD_CPU=y
 # CONFIG_CMD_XIMG is not set
 # CONFIG_CMD_FPGA is not set
 # CONFIG_CMD_ITEST is not set
-# CONFIG_CMD_SETEXPR is not set
 CONFIG_CMD_DHCP=y
 # CONFIG_CMD_NFS is not set
 CONFIG_CMD_PING=y
-- 
2.1.4

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

* [U-Boot] [PATCH 2/2] nios2: enable setexpr command in defconfig
  2015-10-29  8:45 ` [U-Boot] [PATCH 2/2] nios2: enable setexpr command in defconfig Thomas Chou
@ 2015-10-29 13:15   ` Marek Vasut
  2015-11-03  5:18   ` Thomas Chou
  1 sibling, 0 replies; 5+ messages in thread
From: Marek Vasut @ 2015-10-29 13:15 UTC (permalink / raw)
  To: u-boot

On Thursday, October 29, 2015 at 09:45:48 AM, Thomas Chou wrote:
> Enable setexpr command in defconfig because it is really
> useful as suggested by Marek.

Awww, so much credit in the commit message :)

> Signed-off-by: Thomas Chou <thomas@wytron.com.tw>

Acked-by: Marek Vasut <marex@denx.de>

> ---
>  configs/nios2-generic_defconfig | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/configs/nios2-generic_defconfig
> b/configs/nios2-generic_defconfig index d4403fc..0a6de6f 100644
> --- a/configs/nios2-generic_defconfig
> +++ b/configs/nios2-generic_defconfig
> @@ -10,7 +10,6 @@ CONFIG_CMD_CPU=y
>  # CONFIG_CMD_XIMG is not set
>  # CONFIG_CMD_FPGA is not set
>  # CONFIG_CMD_ITEST is not set
> -# CONFIG_CMD_SETEXPR is not set
>  CONFIG_CMD_DHCP=y
>  # CONFIG_CMD_NFS is not set
>  CONFIG_CMD_PING=y

Best regards,
Marek Vasut

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

* [U-Boot] [PATCH 1/2] nios2: clean up macros that do not need a value in board header
  2015-10-29  8:45 [U-Boot] [PATCH 1/2] nios2: clean up macros that do not need a value in board header Thomas Chou
  2015-10-29  8:45 ` [U-Boot] [PATCH 2/2] nios2: enable setexpr command in defconfig Thomas Chou
@ 2015-11-03  5:18 ` Thomas Chou
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Chou @ 2015-11-03  5:18 UTC (permalink / raw)
  To: u-boot



On 2015?10?29? 16:45, Thomas Chou wrote:
> Clean up macros that do not need a value as suggested by
> Marek.
>
> Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
> ---
>   include/configs/nios2-generic.h | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
>

Applied to u-boot-nios.

> diff --git a/include/configs/nios2-generic.h b/include/configs/nios2-generic.h
> index 4283c95..144534d 100644
> --- a/include/configs/nios2-generic.h
> +++ b/include/configs/nios2-generic.h
> @@ -35,10 +35,10 @@
>   /*
>    * MII/PHY
>    */
> -#define CONFIG_CMD_MII			1
> -#define CONFIG_PHY_GIGE			1
> -#define CONFIG_SYS_FAULT_ECHO_LINK_DOWN	1
> -#define CONFIG_PHY_MARVELL		1
> +#define CONFIG_CMD_MII
> +#define CONFIG_PHY_GIGE
> +#define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
> +#define CONFIG_PHY_MARVELL
>
>   /*
>    * BOOTP options
>

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

* [U-Boot] [PATCH 2/2] nios2: enable setexpr command in defconfig
  2015-10-29  8:45 ` [U-Boot] [PATCH 2/2] nios2: enable setexpr command in defconfig Thomas Chou
  2015-10-29 13:15   ` Marek Vasut
@ 2015-11-03  5:18   ` Thomas Chou
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Chou @ 2015-11-03  5:18 UTC (permalink / raw)
  To: u-boot



On 2015?10?29? 16:45, Thomas Chou wrote:
> Enable setexpr command in defconfig because it is really
> useful as suggested by Marek.
>
> Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
> ---
>   configs/nios2-generic_defconfig | 1 -
>   1 file changed, 1 deletion(-)
>

Applied to u-boot-nios.

> diff --git a/configs/nios2-generic_defconfig b/configs/nios2-generic_defconfig
> index d4403fc..0a6de6f 100644
> --- a/configs/nios2-generic_defconfig
> +++ b/configs/nios2-generic_defconfig
> @@ -10,7 +10,6 @@ CONFIG_CMD_CPU=y
>   # CONFIG_CMD_XIMG is not set
>   # CONFIG_CMD_FPGA is not set
>   # CONFIG_CMD_ITEST is not set
> -# CONFIG_CMD_SETEXPR is not set
>   CONFIG_CMD_DHCP=y
>   # CONFIG_CMD_NFS is not set
>   CONFIG_CMD_PING=y
>

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

end of thread, other threads:[~2015-11-03  5:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-29  8:45 [U-Boot] [PATCH 1/2] nios2: clean up macros that do not need a value in board header Thomas Chou
2015-10-29  8:45 ` [U-Boot] [PATCH 2/2] nios2: enable setexpr command in defconfig Thomas Chou
2015-10-29 13:15   ` Marek Vasut
2015-11-03  5:18   ` Thomas Chou
2015-11-03  5:18 ` [U-Boot] [PATCH 1/2] nios2: clean up macros that do not need a value in board header Thomas Chou

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.