blob: d60f494b58b5e9be03d3b379edd54999eb96a143 [file] [log] [blame]
Tom Rini26750c82012-06-19 12:54:34 +00001/*
2 * Copyright 2012 Texas Instruments
3 *
4 * This file is licensed under the terms of the GNU General Public
5 * License Version 2. This file is licensed "as is" without any
6 * warranty of any kind, whether express or implied.
7 */
8
9#ifndef __CONFIG_FALLBACKS_H
10#define __CONFIG_FALLBACKS_H
11
Benoît Thébaudeau6113d3f2013-04-11 09:35:49 +000012#ifdef CONFIG_SPL_PAD_TO
13#ifdef CONFIG_SPL_MAX_SIZE
14#if CONFIG_SPL_PAD_TO && CONFIG_SPL_PAD_TO < CONFIG_SPL_MAX_SIZE
15#error CONFIG_SPL_PAD_TO < CONFIG_SPL_MAX_SIZE
16#endif
17#endif
Benoît Thébaudeau6113d3f2013-04-11 09:35:49 +000018#endif
19
Tom Rini65cc0e22022-11-16 13:10:41 -050020#ifndef CFG_SYS_BAUDRATE_TABLE
21#define CFG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
Tom Rini26750c82012-06-19 12:54:34 +000022#endif
23
Tom Rini26750c82012-06-19 12:54:34 +000024#endif /* __CONFIG_FALLBACKS_H */