Commit 31bdfc64 authored by Jingoo Han's avatar Jingoo Han Committed by Greg Kroah-Hartman

serial: max3100: 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 avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 89fa28db
...@@ -778,7 +778,7 @@ static int max3100_probe(struct spi_device *spi) ...@@ -778,7 +778,7 @@ static int max3100_probe(struct spi_device *spi)
max3100s[i]->spi = spi; max3100s[i]->spi = spi;
max3100s[i]->irq = spi->irq; max3100s[i]->irq = spi->irq;
spin_lock_init(&max3100s[i]->conf_lock); spin_lock_init(&max3100s[i]->conf_lock);
dev_set_drvdata(&spi->dev, max3100s[i]); spi_set_drvdata(spi, max3100s[i]);
pdata = spi->dev.platform_data; pdata = spi->dev.platform_data;
max3100s[i]->crystal = pdata->crystal; max3100s[i]->crystal = pdata->crystal;
max3100s[i]->loopback = pdata->loopback; max3100s[i]->loopback = pdata->loopback;
...@@ -819,7 +819,7 @@ static int max3100_probe(struct spi_device *spi) ...@@ -819,7 +819,7 @@ static int max3100_probe(struct spi_device *spi)
static int max3100_remove(struct spi_device *spi) static int max3100_remove(struct spi_device *spi)
{ {
struct max3100_port *s = dev_get_drvdata(&spi->dev); struct max3100_port *s = spi_get_drvdata(spi);
int i; int i;
mutex_lock(&max3100s_lock); mutex_lock(&max3100s_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment