diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:20:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:35 -0400 |
commit | ccbc20f9489eed37e2c9a56ff04bb34eabbc9796 (patch) | |
tree | 61d3d44dc2106dcf7d0db2227812b8d6eb1f0283 /drivers/rtc/rtc-ds1390.c | |
parent | 3cf790055df7820531068c74ed1a63e2e196da50 (diff) |
rtc: rtc-ds1390: use 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: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-ds1390.c')
-rw-r--r-- | drivers/rtc/rtc-ds1390.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-ds1390.c b/drivers/rtc/rtc-ds1390.c index f994257981a0..11b70763bb53 100644 --- a/drivers/rtc/rtc-ds1390.c +++ b/drivers/rtc/rtc-ds1390.c | |||
@@ -136,7 +136,7 @@ static int ds1390_probe(struct spi_device *spi) | |||
136 | dev_err(&spi->dev, "unable to allocate device memory\n"); | 136 | dev_err(&spi->dev, "unable to allocate device memory\n"); |
137 | return -ENOMEM; | 137 | return -ENOMEM; |
138 | } | 138 | } |
139 | dev_set_drvdata(&spi->dev, chip); | 139 | spi_set_drvdata(spi, chip); |
140 | 140 | ||
141 | res = ds1390_get_reg(&spi->dev, DS1390_REG_SECONDS, &tmp); | 141 | res = ds1390_get_reg(&spi->dev, DS1390_REG_SECONDS, &tmp); |
142 | if (res != 0) { | 142 | if (res != 0) { |