From: Jingoo Han Date: Fri, 30 Aug 2013 05:00:45 +0000 (+0900) Subject: net: seeq: use dev_get_platdata() X-Git-Tag: Ubuntu-snapdragon-4.4.0-1029.32~10247^2~125 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=d776542853a1418457e3fe09b2f1f2955065b375;p=mirror_ubuntu-zesty-kernel.git net: seeq: 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: David S. Miller --- diff --git a/drivers/net/ethernet/seeq/sgiseeq.c b/drivers/net/ethernet/seeq/sgiseeq.c index 856e523ac936..c76571886011 100644 --- a/drivers/net/ethernet/seeq/sgiseeq.c +++ b/drivers/net/ethernet/seeq/sgiseeq.c @@ -721,7 +721,7 @@ static const struct net_device_ops sgiseeq_netdev_ops = { static int sgiseeq_probe(struct platform_device *pdev) { - struct sgiseeq_platform_data *pd = pdev->dev.platform_data; + struct sgiseeq_platform_data *pd = dev_get_platdata(&pdev->dev); struct hpc3_regs *hpcregs = pd->hpc; struct sgiseeq_init_block *sr; unsigned int irq = pd->irq;