From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anatolij Gustschin Date: Fri, 16 Dec 2011 13:13:47 +0100 Subject: [U-Boot] [PATCH] add missing space In-Reply-To: <20111215233215.GB21725@w500.lan> References: <20111215233215.GB21725@w500.lan> Message-ID: <20111216131347.7919d4db@wker> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Luka, On Fri, 16 Dec 2011 00:32:15 +0100 Luka Perkov wrote: > Cosmetic patch for first U-Boot line that gets printed. > > Signed-off-by: Luka Perkov > --- > diff --git a/include/version.h b/include/version.h > index c908bd3..ac5a39a 100644 > --- a/include/version.h > +++ b/include/version.h > @@ -35,7 +35,7 @@ > #endif > > #define U_BOOT_VERSION_STRING U_BOOT_VERSION " (" U_BOOT_DATE " - " \ > - U_BOOT_TIME ")" CONFIG_IDENT_STRING > + U_BOOT_TIME ") " CONFIG_IDENT_STRING This change is not needed I think. Most boards defining CONFIG_IDENT_STRING use either a string starting with new line or strings like " something". So this patch will deface version string. Your CONFIG_IDENT_STRING should be fixed instead. Thanks, Anatolij