Lines Matching refs:pd
74 struct platform_device *pd; in soc_button_device_create() local
116 pd = platform_device_alloc("gpio-keys", PLATFORM_DEVID_AUTO); in soc_button_device_create()
117 if (!pd) { in soc_button_device_create()
122 error = platform_device_add_data(pd, gpio_keys_pdata, in soc_button_device_create()
127 error = platform_device_add(pd); in soc_button_device_create()
131 return pd; in soc_button_device_create()
134 platform_device_put(pd); in soc_button_device_create()
159 struct platform_device *pd; in soc_button_probe() local
176 pd = soc_button_device_create(pdev, button_info, i == 0); in soc_button_probe()
177 if (IS_ERR(pd)) { in soc_button_probe()
178 error = PTR_ERR(pd); in soc_button_probe()
186 priv->children[i] = pd; in soc_button_probe()