Lines Matching refs:pdev
75 static int mop500_of_probe(struct platform_device *pdev, in mop500_of_probe() argument
86 dev_err(&pdev->dev, "Phandle missing or invalid\n"); in mop500_of_probe()
105 static int mop500_probe(struct platform_device *pdev) in mop500_probe() argument
107 struct device_node *np = pdev->dev.of_node; in mop500_probe()
110 dev_dbg(&pdev->dev, "%s: Enter.\n", __func__); in mop500_probe()
112 mop500_card.dev = &pdev->dev; in mop500_probe()
115 ret = mop500_of_probe(pdev, np); in mop500_probe()
120 dev_dbg(&pdev->dev, "%s: Card %s: Set platform drvdata.\n", in mop500_probe()
122 platform_set_drvdata(pdev, &mop500_card); in mop500_probe()
126 dev_dbg(&pdev->dev, "%s: Card %s: num_links = %d\n", in mop500_probe()
128 dev_dbg(&pdev->dev, "%s: Card %s: DAI-link 0: name = %s\n", in mop500_probe()
130 dev_dbg(&pdev->dev, "%s: Card %s: DAI-link 0: stream_name = %s\n", in mop500_probe()
136 dev_err(&pdev->dev, in mop500_probe()
142 static int mop500_remove(struct platform_device *pdev) in mop500_remove() argument
144 struct snd_soc_card *mop500_card = platform_get_drvdata(pdev); in mop500_remove()