提交 8343f8a7 编写于 作者: W Wolfgang Denk

post/drivers/i2c.c: fix compile error

Commit 7e263cea "post/i2c: Clean up detection logic" added a "const"
qualifier to the declaration of i2c_addr_list[], missing the fact that
the list gets modified later in the code, which results in build
errors like these:

i2c.c: In function 'i2c_post_test':
i2c.c:88: error: assignment of read-only location

Remove the incorrect "const".
Signed-off-by: NWolfgang Denk <wd@denx.de>
Cc: Peter Tyser <ptyser@xes-inc.com>
Cc: Heiko Schocher <hs@denx.de>
Acked-by: NHeiko Schocher <hs@denx.de>
上级 79e63139
......@@ -74,7 +74,7 @@ int i2c_post_test (int flags)
#else
unsigned int ret = 0;
int j;
const unsigned char i2c_addr_list[] = CONFIG_SYS_POST_I2C_ADDRS;
unsigned char i2c_addr_list[] = CONFIG_SYS_POST_I2C_ADDRS;
/* Start at address 1, address 0 is the general call address */
for (i = 1; i < 128; i++) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册