Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 941ea361 authored by Felipe Balbi's avatar Felipe Balbi
Browse files

usb: dwc3: use dev_get_platdata()



Use the wrapper function for retrieving the
platform_data instead of accessing dev->platform_data
directly.

While at that also make change 'node' initialization
to use the dev pointer.

Inspired-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent f0742459
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -350,11 +350,11 @@ static void dwc3_core_exit(struct dwc3 *dwc)

static int dwc3_probe(struct platform_device *pdev)
{
	struct dwc3_platform_data *pdata = pdev->dev.platform_data;
	struct device_node	*node = pdev->dev.of_node;
	struct device		*dev = &pdev->dev;
	struct dwc3_platform_data *pdata = dev_get_platdata(dev);
	struct device_node	*node = dev->of_node;
	struct resource		*res;
	struct dwc3		*dwc;
	struct device		*dev = &pdev->dev;

	int			ret = -ENOMEM;