Commit 48767fd8 authored by Naga Sureshkumar Relli's avatar Naga Sureshkumar Relli Committed by Mark Brown
Browse files

spi: cadence: change sequence of calling runtime_enable



call pm_runtime_enable after set_active other wise it will
enable clock always.

Signed-off-by: default avatarNaga Sureshkumar Relli <nagasure@xilinx.com>
Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 5771a8c0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -576,10 +576,10 @@ static int cdns_spi_probe(struct platform_device *pdev)
		goto clk_dis_apb;
	}

	pm_runtime_enable(&pdev->dev);
	pm_runtime_use_autosuspend(&pdev->dev);
	pm_runtime_set_autosuspend_delay(&pdev->dev, SPI_AUTOSUSPEND_TIMEOUT);
	pm_runtime_set_active(&pdev->dev);
	pm_runtime_enable(&pdev->dev);

	ret = of_property_read_u32(pdev->dev.of_node, "num-cs", &num_cs);
	if (ret < 0)