Lines Matching refs:d
48 struct int3402_thermal_data *d; in int3402_thermal_probe() local
54 d = devm_kzalloc(&pdev->dev, sizeof(*d), GFP_KERNEL); in int3402_thermal_probe()
55 if (!d) in int3402_thermal_probe()
58 d->int340x_zone = int340x_thermal_zone_add(adev, NULL); in int3402_thermal_probe()
59 if (IS_ERR(d->int340x_zone)) in int3402_thermal_probe()
60 return PTR_ERR(d->int340x_zone); in int3402_thermal_probe()
65 d); in int3402_thermal_probe()
67 int340x_thermal_zone_remove(d->int340x_zone); in int3402_thermal_probe()
71 d->handle = adev->handle; in int3402_thermal_probe()
72 platform_set_drvdata(pdev, d); in int3402_thermal_probe()
79 struct int3402_thermal_data *d = platform_get_drvdata(pdev); in int3402_thermal_remove() local
81 acpi_remove_notify_handler(d->handle, in int3402_thermal_remove()
83 int340x_thermal_zone_remove(d->int340x_zone); in int3402_thermal_remove()