Lines Matching refs:pd
75 struct platform_device *pd; in soc_button_device_create() local
117 pd = platform_device_alloc("gpio-keys", PLATFORM_DEVID_AUTO); in soc_button_device_create()
118 if (!pd) { in soc_button_device_create()
123 error = platform_device_add_data(pd, gpio_keys_pdata, in soc_button_device_create()
128 error = platform_device_add(pd); in soc_button_device_create()
132 return pd; in soc_button_device_create()
135 platform_device_put(pd); in soc_button_device_create()
160 struct platform_device *pd; in soc_button_probe() local
177 pd = soc_button_device_create(pdev, button_info, i == 0); in soc_button_probe()
178 if (IS_ERR(pd)) { in soc_button_probe()
179 error = PTR_ERR(pd); in soc_button_probe()
187 priv->children[i] = pd; in soc_button_probe()