mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
Section name should be ".data", not "data"
Signed-off-by: Trent Piepho <tpiepho@freescale.com> Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
7fa6a2f3b6
commit
5e3ab68e9a
4 changed files with 8 additions and 10 deletions
|
@ -37,7 +37,7 @@
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
#if defined(CONFIG_I2C_MULTI_BUS)
|
#if defined(CONFIG_I2C_MULTI_BUS)
|
||||||
static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = 0;
|
static unsigned int i2c_bus_num __attribute__ ((section (".data"))) = 0;
|
||||||
#endif /* CONFIG_I2C_MULTI_BUS */
|
#endif /* CONFIG_I2C_MULTI_BUS */
|
||||||
|
|
||||||
/* uSec to wait between polls of the i2c */
|
/* uSec to wait between polls of the i2c */
|
||||||
|
|
|
@ -42,11 +42,10 @@ DECLARE_GLOBAL_DATA_PTR;
|
||||||
* runs from ROM, and we can't switch buses because we can't modify
|
* runs from ROM, and we can't switch buses because we can't modify
|
||||||
* the global variables.
|
* the global variables.
|
||||||
*/
|
*/
|
||||||
#ifdef CONFIG_SYS_SPD_BUS_NUM
|
#ifndef CONFIG_SYS_SPD_BUS_NUM
|
||||||
static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = CONFIG_SYS_SPD_BUS_NUM;
|
#define CONFIG_SYS_SPD_BUS_NUM 0
|
||||||
#else
|
|
||||||
static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = 0;
|
|
||||||
#endif
|
#endif
|
||||||
|
static unsigned int i2c_bus_num __attribute__ ((section (".data"))) = CONFIG_SYS_SPD_BUS_NUM;
|
||||||
#endif /* CONFIG_I2C_MULTI_BUS */
|
#endif /* CONFIG_I2C_MULTI_BUS */
|
||||||
|
|
||||||
static void _i2c_bus_reset(void)
|
static void _i2c_bus_reset(void)
|
||||||
|
|
|
@ -38,11 +38,10 @@ DECLARE_GLOBAL_DATA_PTR;
|
||||||
* runs from ROM, and we can't switch buses because we can't modify
|
* runs from ROM, and we can't switch buses because we can't modify
|
||||||
* the global variables.
|
* the global variables.
|
||||||
*/
|
*/
|
||||||
#ifdef CONFIG_SYS_SPD_BUS_NUM
|
#ifndef CONFIG_SYS_SPD_BUS_NUM
|
||||||
static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = CONFIG_SYS_SPD_BUS_NUM;
|
#define CONFIG_SYS_SPD_BUS_NUM 0
|
||||||
#else
|
|
||||||
static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = 0;
|
|
||||||
#endif
|
#endif
|
||||||
|
static unsigned int i2c_bus_num __attribute__ ((section (".data"))) = CONFIG_SYS_SPD_BUS_NUM;
|
||||||
|
|
||||||
static unsigned int i2c_bus_speed[2] = {CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SPEED};
|
static unsigned int i2c_bus_speed[2] = {CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SPEED};
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ DECLARE_GLOBAL_DATA_PTR;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_I2C_MULTI_BUS)
|
#if defined(CONFIG_I2C_MULTI_BUS)
|
||||||
static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = 0;
|
static unsigned int i2c_bus_num __attribute__ ((section (".data"))) = 0;
|
||||||
#endif /* CONFIG_I2C_MULTI_BUS */
|
#endif /* CONFIG_I2C_MULTI_BUS */
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------
|
/*-----------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue