Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1594908a authored by Jingoo Han's avatar Jingoo Han Committed by David Woodhouse
Browse files

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: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 25983b18
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -370,7 +370,7 @@ static int sst25l_probe(struct spi_device *spi)

	flash->spi = spi;
	mutex_init(&flash->lock);
	dev_set_drvdata(&spi->dev, flash);
	spi_set_drvdata(spi, flash);

	data = spi->dev.platform_data;
	if (data && data->name)
@@ -404,7 +404,7 @@ static int sst25l_probe(struct spi_device *spi)
					data ? data->nr_parts : 0);
	if (ret) {
		kfree(flash);
		dev_set_drvdata(&spi->dev, NULL);
		spi_set_drvdata(spi, NULL);
		return -ENODEV;
	}

@@ -413,7 +413,7 @@ static int sst25l_probe(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;

	ret = mtd_device_unregister(&flash->mtd);