diff options
author | Trevor Woerner <twoerner@gmail.com> | 2021-06-10 22:37:05 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-06 14:12:15 -0400 |
commit | 1028403f2f53093f7c17dd57055d1e8da815348f (patch) | |
tree | 2cedbc6957121bb7e20e7013a18f08de9b700aed /drivers/i2c | |
parent | faf78fd464f46269887be90e5b9d2db405aa5f4e (diff) | |
download | u-boot-1028403f2f53093f7c17dd57055d1e8da815348f.zip u-boot-1028403f2f53093f7c17dd57055d1e8da815348f.tar.gz u-boot-1028403f2f53093f7c17dd57055d1e8da815348f.tar.bz2 |
lpc32xx: i2c: remove unused define
The LPC32XX_I2C_STAT_DRMI is not used anywhere so remove it.
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/lpc32xx_i2c.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/i2c/lpc32xx_i2c.c b/drivers/i2c/lpc32xx_i2c.c index f89f795..0ae1166 100644 --- a/drivers/i2c/lpc32xx_i2c.c +++ b/drivers/i2c/lpc32xx_i2c.c @@ -38,7 +38,6 @@ /* Status register values */ #define LPC32XX_I2C_STAT_TFF 0x00000400 #define LPC32XX_I2C_STAT_RFE 0x00000200 -#define LPC32XX_I2C_STAT_DRMI 0x00000008 #define LPC32XX_I2C_STAT_NAI 0x00000004 #define LPC32XX_I2C_STAT_TDI 0x00000001 |