aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/eeprom
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-04-04 21:55:35 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-04-05 18:38:30 -0400
commit41ddcf67b864343690bffd8029a882377c3ff50b (patch)
treeb6b70c090045e1244663757812e038cc9cc2dfdc /drivers/misc/eeprom
parent2638953fcd6eeea27b4975c1cdd5e62e32758f8f (diff)
misc: at25: use spi_get_drvdata() and spi_set_drvdata()
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>
Diffstat (limited to 'drivers/misc/eeprom')
-rw-r--r--drivers/misc/eeprom/at25.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/eeprom/at25.c b/drivers/misc/eeprom/at25.c
index b08cf8a08789..ad8fd8e64937 100644
--- a/drivers/misc/eeprom/at25.c
+++ b/drivers/misc/eeprom/at25.c
@@ -412,7 +412,7 @@ static int at25_probe(struct spi_device *spi)
412 mutex_init(&at25->lock); 412 mutex_init(&at25->lock);
413 at25->chip = chip; 413 at25->chip = chip;
414 at25->spi = spi_dev_get(spi); 414 at25->spi = spi_dev_get(spi);
415 dev_set_drvdata(&spi->dev, at25); 415 spi_set_drvdata(spi, at25);
416 at25->addrlen = addrlen; 416 at25->addrlen = addrlen;
417 417
418 /* Export the EEPROM bytes through sysfs, since that's convenient. 418 /* Export the EEPROM bytes through sysfs, since that's convenient.
@@ -463,7 +463,7 @@ static int at25_remove(struct spi_device *spi)
463{ 463{
464 struct at25_data *at25; 464 struct at25_data *at25;
465 465
466 at25 = dev_get_drvdata(&spi->dev); 466 at25 = spi_get_drvdata(spi);
467 sysfs_remove_bin_file(&spi->dev.kobj, &at25->bin); 467 sysfs_remove_bin_file(&spi->dev.kobj, &at25->bin);
468 kfree(at25); 468 kfree(at25);
469 return 0; 469 return 0;