Lines Matching refs:pdev
117 static int tegra_snd_trimslice_probe(struct platform_device *pdev) in tegra_snd_trimslice_probe() argument
119 struct device_node *np = pdev->dev.of_node; in tegra_snd_trimslice_probe()
124 trimslice = devm_kzalloc(&pdev->dev, sizeof(struct tegra_trimslice), in tegra_snd_trimslice_probe()
127 dev_err(&pdev->dev, "Can't allocate tegra_trimslice\n"); in tegra_snd_trimslice_probe()
131 card->dev = &pdev->dev; in tegra_snd_trimslice_probe()
132 platform_set_drvdata(pdev, card); in tegra_snd_trimslice_probe()
138 dev_err(&pdev->dev, in tegra_snd_trimslice_probe()
147 dev_err(&pdev->dev, in tegra_snd_trimslice_probe()
156 ret = tegra_asoc_utils_init(&trimslice->util_data, &pdev->dev); in tegra_snd_trimslice_probe()
162 dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", in tegra_snd_trimslice_probe()
175 static int tegra_snd_trimslice_remove(struct platform_device *pdev) in tegra_snd_trimslice_remove() argument
177 struct snd_soc_card *card = platform_get_drvdata(pdev); in tegra_snd_trimslice_remove()