diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-11-12 18:10:51 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-12 22:09:29 -0500 |
commit | f6405afe238f9f16362dd64a814b0381113da67e (patch) | |
tree | 33ed437a6e3797cea5a938895dd39035ca22e2b7 | |
parent | ffc75bb8f240b65ecd4e23d7f87863d9f7aeeeff (diff) |
drivers/rtc/rtc-rs5c348.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>
-rw-r--r-- | drivers/rtc/rtc-rs5c348.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-rs5c348.c b/drivers/rtc/rtc-rs5c348.c index f7a90a116a39..090a101c1c81 100644 --- a/drivers/rtc/rtc-rs5c348.c +++ b/drivers/rtc/rtc-rs5c348.c | |||
@@ -64,7 +64,7 @@ static int | |||
64 | rs5c348_rtc_set_time(struct device *dev, struct rtc_time *tm) | 64 | rs5c348_rtc_set_time(struct device *dev, struct rtc_time *tm) |
65 | { | 65 | { |
66 | struct spi_device *spi = to_spi_device(dev); | 66 | struct spi_device *spi = to_spi_device(dev); |
67 | struct rs5c348_plat_data *pdata = spi->dev.platform_data; | 67 | struct rs5c348_plat_data *pdata = dev_get_platdata(&spi->dev); |
68 | u8 txbuf[5+7], *txp; | 68 | u8 txbuf[5+7], *txp; |
69 | int ret; | 69 | int ret; |
70 | 70 | ||
@@ -100,7 +100,7 @@ static int | |||
100 | rs5c348_rtc_read_time(struct device *dev, struct rtc_time *tm) | 100 | rs5c348_rtc_read_time(struct device *dev, struct rtc_time *tm) |
101 | { | 101 | { |
102 | struct spi_device *spi = to_spi_device(dev); | 102 | struct spi_device *spi = to_spi_device(dev); |
103 | struct rs5c348_plat_data *pdata = spi->dev.platform_data; | 103 | struct rs5c348_plat_data *pdata = dev_get_platdata(&spi->dev); |
104 | u8 txbuf[5], rxbuf[7]; | 104 | u8 txbuf[5], rxbuf[7]; |
105 | int ret; | 105 | int ret; |
106 | 106 | ||