staging:iio:gyro:adxrs450: allocate chip state with iio_dev
authorJonathan Cameron <jic23@cam.ac.uk>
Mon, 27 Jun 2011 12:07:47 +0000 (13:07 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 28 Jun 2011 21:39:48 +0000 (14:39 -0700)
Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk>
Acked-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/iio/gyro/adxrs450.h
drivers/staging/iio/gyro/adxrs450_core.c

index c92f6945f00f4150c33dfe7afa74bf50e17c2177..b6b68287640655185442ffd7069cd4d86d0c4c7f 100644 (file)
 /**
  * struct adxrs450_state - device instance specific data
  * @us:                        actual spi_device
- * @indio_dev:         industrial I/O device structure
+ * @buf_lock:          mutex to protect tx and rx
  * @tx:                        transmit buffer
  * @rx:                        recieve buffer
- * @buf_lock:          mutex to protect tx and rx
  **/
 struct adxrs450_state {
-       struct spi_device               *us;
-       struct iio_dev                  *indio_dev;
-       u8                              *tx;
-       u8                              *rx;
-       struct mutex                    buf_lock;
+       struct spi_device       *us;
+       struct mutex            buf_lock;
+       u8                      tx[ADXRS450_MAX_RX] ____cacheline_aligned;
+       u8                      rx[ADXRS450_MAX_TX];
+
 };
 
 #endif /* SPI_ADXRS450_H_ */
index 3714e4aadc23a10a877347e306356f0f6851ef29..7502a264770be27b0cf3f0e2d16ddd5cd9af6276 100644 (file)
@@ -38,7 +38,7 @@ static int adxrs450_spi_read_reg_16(struct device *dev,
 {
        struct spi_message msg;
        struct iio_dev *indio_dev = dev_get_drvdata(dev);
-       struct adxrs450_state *st = iio_dev_get_devdata(indio_dev);
+       struct adxrs450_state *st = iio_priv(indio_dev);
        int ret;
        struct spi_transfer xfers[] = {
                {
@@ -92,7 +92,7 @@ static int adxrs450_spi_write_reg_16(struct device *dev,
 {
        struct spi_message msg;
        struct iio_dev *indio_dev = dev_get_drvdata(dev);
-       struct adxrs450_state *st = iio_dev_get_devdata(indio_dev);
+       struct adxrs450_state *st = iio_priv(indio_dev);
        int ret;
        struct spi_transfer xfers = {
                .tx_buf = st->tx,
@@ -130,7 +130,7 @@ static int adxrs450_spi_sensor_data(struct device *dev, s16 *val)
 {
        struct spi_message msg;
        struct iio_dev *indio_dev = dev_get_drvdata(dev);
-       struct adxrs450_state *st = iio_dev_get_devdata(indio_dev);
+       struct adxrs450_state *st = iio_priv(indio_dev);
        int ret;
        struct spi_transfer xfers[] = {
                {
@@ -267,12 +267,13 @@ static ssize_t adxrs450_read_sensor_data(struct device *dev,
 }
 
 /* Recommended Startup Sequence by spec */
-static int adxrs450_initial_setup(struct adxrs450_state *st)
+static int adxrs450_initial_setup(struct iio_dev *indio_dev)
 {
        u32 t;
        u16 data;
        int ret;
-       struct device *dev = &st->indio_dev->dev;
+       struct device *dev = &indio_dev->dev;
+       struct adxrs450_state *st = iio_priv(indio_dev);
 
        msleep(ADXRS450_STARTUP_DELAY*2);
        ret = adxrs450_spi_initial(st, &t, 1);
@@ -357,46 +358,32 @@ static const struct iio_info adxrs450_info = {
 static int __devinit adxrs450_probe(struct spi_device *spi)
 {
        int ret, regdone = 0;
-       struct adxrs450_state *st = kzalloc(sizeof *st, GFP_KERNEL);
-       if (!st) {
-               ret =  -ENOMEM;
-               goto error_ret;
-       }
-       /* This is only used for removal purposes */
-       spi_set_drvdata(spi, st);
+       struct adxrs450_state *st;
+       struct iio_dev *indio_dev;
 
-       /* Allocate the comms buffers */
-       st->rx = kzalloc(sizeof(*st->rx)*ADXRS450_MAX_RX, GFP_KERNEL);
-       if (st->rx == NULL) {
-               ret = -ENOMEM;
-               goto error_free_st;
-       }
-       st->tx = kzalloc(sizeof(*st->tx)*ADXRS450_MAX_TX, GFP_KERNEL);
-       if (st->tx == NULL) {
+       /* setup the industrialio driver allocated elements */
+       indio_dev = iio_allocate_device(sizeof(*st));
+       if (indio_dev == NULL) {
                ret = -ENOMEM;
-               goto error_free_rx;
+               goto error_ret;
        }
+       st = iio_priv(indio_dev);
        st->us = spi;
        mutex_init(&st->buf_lock);
-       /* setup the industrialio driver allocated elements */
-       st->indio_dev = iio_allocate_device(0);
-       if (st->indio_dev == NULL) {
-               ret = -ENOMEM;
-               goto error_free_tx;
-       }
+       /* This is only used for removal purposes */
+       spi_set_drvdata(spi, indio_dev);
 
-       st->indio_dev->dev.parent = &spi->dev;
-       st->indio_dev->info = &adxrs450_info;
-       st->indio_dev->dev_data = (void *)(st);
-       st->indio_dev->modes = INDIO_DIRECT_MODE;
+       indio_dev->dev.parent = &spi->dev;
+       indio_dev->info = &adxrs450_info;
+       indio_dev->modes = INDIO_DIRECT_MODE;
 
-       ret = iio_device_register(st->indio_dev);
+       ret = iio_device_register(indio_dev);
        if (ret)
                goto error_free_dev;
        regdone = 1;
 
        /* Get the device into a sane initial state */
-       ret = adxrs450_initial_setup(st);
+       ret = adxrs450_initial_setup(indio_dev);
        if (ret)
                goto error_initial;
        return 0;
@@ -404,27 +391,17 @@ static int __devinit adxrs450_probe(struct spi_device *spi)
 error_initial:
 error_free_dev:
        if (regdone)
-               iio_device_unregister(st->indio_dev);
+               iio_device_unregister(indio_dev);
        else
-               iio_free_device(st->indio_dev);
-error_free_tx:
-       kfree(st->tx);
-error_free_rx:
-       kfree(st->rx);
-error_free_st:
-       kfree(st);
+               iio_free_device(indio_dev);
+
 error_ret:
        return ret;
 }
 
 static int adxrs450_remove(struct spi_device *spi)
 {
-       struct adxrs450_state *st = spi_get_drvdata(spi);
-
-       iio_device_unregister(st->indio_dev);
-       kfree(st->tx);
-       kfree(st->rx);
-       kfree(st);
+       iio_device_unregister(spi_get_drvdata(spi));
 
        return 0;
 }