mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
i2c: sh_i2c.c: correct BUSY bit define in ICSR
Correct BUSY bit define in ICSR from (1<<3) to (1<<4). Acked-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> Signed-off-by: Tetsuyuki Kobayashi <koba@kmckk.co.jp>
This commit is contained in:
committed by
Heiko Schocher
parent
b1af67fe5e
commit
57d7c80472
@@ -43,7 +43,7 @@ static struct sh_i2c *base;
|
||||
#define SH_I2C_ICCR_SCP (1 << 0)
|
||||
|
||||
/* ICSR / ICIC */
|
||||
#define SH_IC_BUSY (1 << 3)
|
||||
#define SH_IC_BUSY (1 << 4)
|
||||
#define SH_IC_TACK (1 << 2)
|
||||
#define SH_IC_WAIT (1 << 1)
|
||||
#define SH_IC_DTE (1 << 0)
|
||||
|
Reference in New Issue
Block a user