[ARM] 5110/1: PXA SSP: Remember the platform device on probe()
pdev is used later on by dev_printk() so must be set. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Eric Miao <eric.miao@marvell.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
bbae02035a
commit
919dcb2111
|
@ -361,6 +361,7 @@ static int __devinit ssp_probe(struct platform_device *pdev, int type)
|
||||||
dev_err(&pdev->dev, "failed to allocate memory");
|
dev_err(&pdev->dev, "failed to allocate memory");
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
ssp->pdev = pdev;
|
||||||
|
|
||||||
ssp->clk = clk_get(&pdev->dev, "SSPCLK");
|
ssp->clk = clk_get(&pdev->dev, "SSPCLK");
|
||||||
if (IS_ERR(ssp->clk)) {
|
if (IS_ERR(ssp->clk)) {
|
||||||
|
|
Loading…
Reference in New Issue