From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Thu, 6 Sep 2018 15:58:23 +0800 Subject: [U-Boot] [PATCH 1/2] config_fallback: update CONFIG_SYS_BAUDRATE_TABLE In-Reply-To: <20180906074121.21892-1-christian.gmeiner@gmail.com> References: <20180906074121.21892-1-christian.gmeiner@gmail.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Christian, On Thu, Sep 6, 2018 at 3:41 PM Christian Gmeiner wrote: > > Take the values from x86-common.h as inspiration. > > Signed-off-by: Christian Gmeiner > --- > include/config_fallbacks.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/include/config_fallbacks.h b/include/config_fallbacks.h > index c18f19a550..4c1bdf5ee5 100644 > --- a/include/config_fallbacks.h > +++ b/include/config_fallbacks.h > @@ -26,7 +26,8 @@ > #endif > > #ifndef CONFIG_SYS_BAUDRATE_TABLE > -#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } > +#define CONFIG_SYS_BAUDRATE_TABLE { 300, 600, 1200, 2400, 4800, \ I don't see a value to bring in 300/600/1200 etc . > + 9600, 19200, 38400, 57600, 115200 } > #endif > > /* Console I/O Buffer Size */ > -- Regards, Bin