diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-04 21:54:05 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-04-05 18:49:39 -0400 |
commit | 31bdfc649f4577c9b1120c67b7b1e85f7777aad0 (patch) | |
tree | 7cd7ba0eaccafd1fc20e225926e39e8209dafc11 /drivers/tty | |
parent | 89fa28dbe0395ee06f3aacfe27655323ebad43d1 (diff) |
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: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/max3100.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/max3100.c b/drivers/tty/serial/max3100.c index 57da9bbaaab5..35866d5872ad 100644 --- a/drivers/tty/serial/max3100.c +++ b/drivers/tty/serial/max3100.c | |||
@@ -778,7 +778,7 @@ static int max3100_probe(struct spi_device *spi) | |||
778 | max3100s[i]->spi = spi; | 778 | max3100s[i]->spi = spi; |
779 | max3100s[i]->irq = spi->irq; | 779 | max3100s[i]->irq = spi->irq; |
780 | spin_lock_init(&max3100s[i]->conf_lock); | 780 | spin_lock_init(&max3100s[i]->conf_lock); |
781 | dev_set_drvdata(&spi->dev, max3100s[i]); | 781 | spi_set_drvdata(spi, max3100s[i]); |
782 | pdata = spi->dev.platform_data; | 782 | pdata = spi->dev.platform_data; |
783 | max3100s[i]->crystal = pdata->crystal; | 783 | max3100s[i]->crystal = pdata->crystal; |
784 | max3100s[i]->loopback = pdata->loopback; | 784 | max3100s[i]->loopback = pdata->loopback; |
@@ -819,7 +819,7 @@ static int max3100_probe(struct spi_device *spi) | |||
819 | 819 | ||
820 | static int max3100_remove(struct spi_device *spi) | 820 | static int max3100_remove(struct spi_device *spi) |
821 | { | 821 | { |
822 | struct max3100_port *s = dev_get_drvdata(&spi->dev); | 822 | struct max3100_port *s = spi_get_drvdata(spi); |
823 | int i; | 823 | int i; |
824 | 824 | ||
825 | mutex_lock(&max3100s_lock); | 825 | mutex_lock(&max3100s_lock); |