Преглед изворни кода

dmaengine/dw_dmac: Use dev_get_platdata() instead of accessing dev directly

Use already defined function dev_get_platdata() instead of accessing
pdev->dev.data.

Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Viresh Kumar пре 13 година
родитељ
комит
6c618c9de5
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      drivers/dma/dw_dmac.c

+ 1 - 1
drivers/dma/dw_dmac.c

@@ -1369,7 +1369,7 @@ static int __init dw_probe(struct platform_device *pdev)
 	int			err;
 	int			i;
 
-	pdata = pdev->dev.platform_data;
+	pdata = dev_get_platdata(&pdev->dev);
 	if (!pdata || pdata->nr_channels > DW_DMA_MAX_NR_CHANNELS)
 		return -EINVAL;