diff options
author | Ray Jui <rjui@broadcom.com> | 2016-02-13 00:10:42 +0300 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2016-02-13 00:42:06 +0300 |
commit | ed36bfc3b0a033362200aae699c8a2148fe2f04f (patch) | |
tree | 2bdd2f1829ee384124ef16bfd9b33666d093ed90 /drivers/i2c | |
parent | 6ee608c1c9ce2b11ef90873b841ca380e7142007 (diff) | |
download | linux-ed36bfc3b0a033362200aae699c8a2148fe2f04f.tar.xz |
i2c: iproc: Fix typo in the driver
Fix typo in the driver from 'I2C_TIMEOUT_MESC' to 'I2C_TIMEOUT_MSEC'
Signed-off-by: Ray Jui <rjui@broadcom.com>
Reviewed-by: Scott Branden <sbranden@broadcom.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-bcm-iproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/busses/i2c-bcm-iproc.c b/drivers/i2c/busses/i2c-bcm-iproc.c index 709b56af0676..859a623e73e7 100644 --- a/drivers/i2c/busses/i2c-bcm-iproc.c +++ b/drivers/i2c/busses/i2c-bcm-iproc.c @@ -76,7 +76,7 @@ #define M_RX_DATA_SHIFT 0 #define M_RX_DATA_MASK 0xff -#define I2C_TIMEOUT_MESC 100 +#define I2C_TIMEOUT_MSEC 100 #define M_TX_RX_FIFO_SIZE 64 enum bus_speed_index { @@ -207,7 +207,7 @@ static int bcm_iproc_i2c_xfer_single_msg(struct bcm_iproc_i2c_dev *iproc_i2c, int ret, i; u8 addr; u32 val; - unsigned long time_left = msecs_to_jiffies(I2C_TIMEOUT_MESC); + unsigned long time_left = msecs_to_jiffies(I2C_TIMEOUT_MSEC); /* check if bus is busy */ if (!!(readl(iproc_i2c->base + M_CMD_OFFSET) & |