From: Jingoo Han Date: Tue, 10 Sep 2013 08:57:05 +0000 (+0900) Subject: wireless: wl1251: use dev_get_platdata() X-Git-Tag: accepted/tizen/common/20141203.182822~1141^2~225^2~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f4fe16bac118ed9e88fdf14380e1c1345376a7d;p=platform%2Fkernel%2Flinux-arm64.git wireless: wl1251: 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 Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ti/wl1251/spi.c b/drivers/net/wireless/ti/wl1251/spi.c index c7dc6fe..1342f81 100644 --- a/drivers/net/wireless/ti/wl1251/spi.c +++ b/drivers/net/wireless/ti/wl1251/spi.c @@ -243,7 +243,7 @@ static int wl1251_spi_probe(struct spi_device *spi) struct wl1251 *wl; int ret; - pdata = spi->dev.platform_data; + pdata = dev_get_platdata(&spi->dev); if (!pdata) { wl1251_error("no platform data"); return -ENODEV;