Don't open code the AC_READ and AC_WRITE macros.

Signed-off-by: Wolfram Sang <[email protected]>
---
 drivers/input/misc/adxl34x.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/input/misc/adxl34x.c b/drivers/input/misc/adxl34x.c
index 1cf72fe..b18d3e2 100644
--- a/drivers/input/misc/adxl34x.c
+++ b/drivers/input/misc/adxl34x.c
@@ -732,7 +732,7 @@ struct adxl34x *adxl34x_probe(struct device *dev, int irq,
        mutex_init(&ac->mutex);
 
        input_dev->name = "ADXL34x accelerometer";
-       revid = ac->bops->read(dev, DEVID);
+       revid = AC_READ(ac, DEVID);
 
        switch (revid) {
        case ID_ADXL345:
@@ -809,7 +809,7 @@ struct adxl34x *adxl34x_probe(struct device *dev, int irq,
        if (FIFO_MODE(pdata->fifo_mode) == FIFO_BYPASS)
                ac->fifo_delay = false;
 
-       ac->bops->write(dev, POWER_CTL, 0);
+       AC_WRITE(ac, POWER_CTL, 0);
 
        err = request_threaded_irq(ac->irq, NULL, adxl34x_irq,
                                   IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to