From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Chou Date: Tue, 3 Nov 2015 13:18:24 +0800 Subject: [U-Boot] [PATCH 1/2] nios2: clean up macros that do not need a value in board header In-Reply-To: <1446108348-10797-1-git-send-email-thomas@wytron.com.tw> References: <1446108348-10797-1-git-send-email-thomas@wytron.com.tw> Message-ID: <563843A0.6000709@wytron.com.tw> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 > --- > 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 >