1*26750c8aSTom Rini /* 2*26750c8aSTom Rini * Copyright 2012 Texas Instruments 3*26750c8aSTom Rini * 4*26750c8aSTom Rini * This file is licensed under the terms of the GNU General Public 5*26750c8aSTom Rini * License Version 2. This file is licensed "as is" without any 6*26750c8aSTom Rini * warranty of any kind, whether express or implied. 7*26750c8aSTom Rini */ 8*26750c8aSTom Rini 9*26750c8aSTom Rini #ifndef __CONFIG_FALLBACKS_H 10*26750c8aSTom Rini #define __CONFIG_FALLBACKS_H 11*26750c8aSTom Rini 12*26750c8aSTom Rini #ifndef CONFIG_SYS_BAUDRATE_TABLE 13*26750c8aSTom Rini #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } 14*26750c8aSTom Rini #endif 15*26750c8aSTom Rini 16*26750c8aSTom Rini #endif /* __CONFIG_FALLBACKS_H */ 17