mtd: sst25l: 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: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
25983b1832
commit
1594908ac0
1 changed files with 3 additions and 3 deletions
|
@ -370,7 +370,7 @@ static int sst25l_probe(struct spi_device *spi)
|
||||||
|
|
||||||
flash->spi = spi;
|
flash->spi = spi;
|
||||||
mutex_init(&flash->lock);
|
mutex_init(&flash->lock);
|
||||||
dev_set_drvdata(&spi->dev, flash);
|
spi_set_drvdata(spi, flash);
|
||||||
|
|
||||||
data = spi->dev.platform_data;
|
data = spi->dev.platform_data;
|
||||||
if (data && data->name)
|
if (data && data->name)
|
||||||
|
@ -404,7 +404,7 @@ static int sst25l_probe(struct spi_device *spi)
|
||||||
data ? data->nr_parts : 0);
|
data ? data->nr_parts : 0);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
kfree(flash);
|
kfree(flash);
|
||||||
dev_set_drvdata(&spi->dev, NULL);
|
spi_set_drvdata(spi, NULL);
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -413,7 +413,7 @@ static int sst25l_probe(struct spi_device *spi)
|
||||||
|
|
||||||
static int sst25l_remove(struct spi_device *spi)
|
static int sst25l_remove(struct spi_device *spi)
|
||||||
{
|
{
|
||||||
struct sst25l_flash *flash = dev_get_drvdata(&spi->dev);
|
struct sst25l_flash *flash = spi_get_drvdata(spi);
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = mtd_device_unregister(&flash->mtd);
|
ret = mtd_device_unregister(&flash->mtd);
|
||||||
|
|
Loading…
Add table
Reference in a new issue