misc: at25: use spi_get_drvdata() and spi_set_drvdata()
authorJingoo Han <jg1.han@samsung.com>
Fri, 5 Apr 2013 01:55:35 +0000 (10:55 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 5 Apr 2013 22:38:30 +0000 (15:38 -0700)
Use the wrapper functions for getting and setting the driver data using
spi_device instead of using dev_{get|set}_drvdata with &spi->dev, so we
can directly pass a struct spi_device.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/eeprom/at25.c

index b08cf8a087891c47f17995598ad205626d588bad..ad8fd8e64937d54513e325cffeed5703a9059705 100644 (file)
@@ -412,7 +412,7 @@ static int at25_probe(struct spi_device *spi)
        mutex_init(&at25->lock);
        at25->chip = chip;
        at25->spi = spi_dev_get(spi);
-       dev_set_drvdata(&spi->dev, at25);
+       spi_set_drvdata(spi, at25);
        at25->addrlen = addrlen;
 
        /* Export the EEPROM bytes through sysfs, since that's convenient.
@@ -463,7 +463,7 @@ static int at25_remove(struct spi_device *spi)
 {
        struct at25_data        *at25;
 
-       at25 = dev_get_drvdata(&spi->dev);
+       at25 = spi_get_drvdata(spi);
        sysfs_remove_bin_file(&spi->dev.kobj, &at25->bin);
        kfree(at25);
        return 0;
This page took 0.025096 seconds and 5 git commands to generate.