diff options
author | Shinya Kuribayashi <shinya.kuribayashi@necel.com> | 2009-11-06 07:49:14 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-12-08 19:19:11 -0500 |
commit | 26ea15b1f584de02bc85e9c3968d523386332f65 (patch) | |
tree | dbbd2db2557276ddb8934bdab36ad723909af5ad /drivers/i2c/busses/i2c-designware.c | |
parent | 81e798b73aec2d7ce06d18bd191b088c233e554f (diff) |
i2c-designware: i2c_dw_xfer_msg: Introduce a local "buf" pointer
While we have a local variable "buf_len" for dev->tx_buf_len, we don't
have such local variable for dev->tx_buf pointer. While "buf_len" is
restored at first then updated when we start processing a new i2c_msg
(determined by STATUS_WRITE_IN_PROGRESS flag), ->tx_buf is different.
Such inconsistency makes the code slightly hard to follow.
Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
Acked-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'drivers/i2c/busses/i2c-designware.c')
-rw-r--r-- | drivers/i2c/busses/i2c-designware.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-designware.c b/drivers/i2c/busses/i2c-designware.c index da5612b21aff..e8e2212d576e 100644 --- a/drivers/i2c/busses/i2c-designware.c +++ b/drivers/i2c/busses/i2c-designware.c | |||
@@ -364,6 +364,7 @@ i2c_dw_xfer_msg(struct dw_i2c_dev *dev) | |||
364 | int rx_limit = dev->rx_fifo_depth - readl(dev->base + DW_IC_RXFLR); | 364 | int rx_limit = dev->rx_fifo_depth - readl(dev->base + DW_IC_RXFLR); |
365 | u32 addr = msgs[dev->msg_write_idx].addr; | 365 | u32 addr = msgs[dev->msg_write_idx].addr; |
366 | u32 buf_len = dev->tx_buf_len; | 366 | u32 buf_len = dev->tx_buf_len; |
367 | u8 *buf = dev->tx_buf;; | ||
367 | 368 | ||
368 | intr_mask = DW_IC_INTR_STOP_DET | DW_IC_INTR_TX_ABRT | DW_IC_INTR_RX_FULL; | 369 | intr_mask = DW_IC_INTR_STOP_DET | DW_IC_INTR_TX_ABRT | DW_IC_INTR_RX_FULL; |
369 | 370 | ||
@@ -384,7 +385,7 @@ i2c_dw_xfer_msg(struct dw_i2c_dev *dev) | |||
384 | 385 | ||
385 | if (!(dev->status & STATUS_WRITE_IN_PROGRESS)) { | 386 | if (!(dev->status & STATUS_WRITE_IN_PROGRESS)) { |
386 | /* new i2c_msg */ | 387 | /* new i2c_msg */ |
387 | dev->tx_buf = msgs[dev->msg_write_idx].buf; | 388 | buf = msgs[dev->msg_write_idx].buf; |
388 | buf_len = msgs[dev->msg_write_idx].len; | 389 | buf_len = msgs[dev->msg_write_idx].len; |
389 | } | 390 | } |
390 | 391 | ||
@@ -393,11 +394,11 @@ i2c_dw_xfer_msg(struct dw_i2c_dev *dev) | |||
393 | writel(0x100, dev->base + DW_IC_DATA_CMD); | 394 | writel(0x100, dev->base + DW_IC_DATA_CMD); |
394 | rx_limit--; | 395 | rx_limit--; |
395 | } else | 396 | } else |
396 | writel(*(dev->tx_buf++), | 397 | writel(*buf++, dev->base + DW_IC_DATA_CMD); |
397 | dev->base + DW_IC_DATA_CMD); | ||
398 | tx_limit--; buf_len--; | 398 | tx_limit--; buf_len--; |
399 | } | 399 | } |
400 | 400 | ||
401 | dev->tx_buf = buf; | ||
401 | dev->tx_buf_len = buf_len; | 402 | dev->tx_buf_len = buf_len; |
402 | 403 | ||
403 | if (buf_len > 0) { | 404 | if (buf_len > 0) { |