diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-11-12 15:10:40 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-13 12:09:28 +0900 |
commit | cfa13b249ed5f63db55df6ff123fc8856b48ff9f (patch) | |
tree | 44bec58232601d58f649351cd3d083fa154b05ab /drivers/rtc/rtc-ds1305.c | |
parent | d1fa24524899b342690f565a3dbf190fb65cc145 (diff) | |
download | linux-cfa13b249ed5f63db55df6ff123fc8856b48ff9f.tar.gz linux-cfa13b249ed5f63db55df6ff123fc8856b48ff9f.tar.bz2 linux-cfa13b249ed5f63db55df6ff123fc8856b48ff9f.zip |
drivers/rtc/rtc-ds1305.c: use dev_get_platdata()
Use the wrapper function for retrieving the platform data instead of
accessing dev->platform_data directly. This is a cosmetic change to make
the code simpler and enhance the readability.
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-ds1305.c')
-rw-r--r-- | drivers/rtc/rtc-ds1305.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-ds1305.c b/drivers/rtc/rtc-ds1305.c index dd6170acde95..80f323731ee2 100644 --- a/drivers/rtc/rtc-ds1305.c +++ b/drivers/rtc/rtc-ds1305.c @@ -606,7 +606,7 @@ static int ds1305_probe(struct spi_device *spi) struct ds1305 *ds1305; int status; u8 addr, value; - struct ds1305_platform_data *pdata = spi->dev.platform_data; + struct ds1305_platform_data *pdata = dev_get_platdata(&spi->dev); bool write_ctrl = false; /* Sanity check board setup data. This may be hooked up |