Commit 0d16710146a1 ("ACPI: bus: Set driver_data to NULL every time .add() fails") introduced clearing driver_data every time probe fails, so it's not necessary to clear it in the probe() callback. Remove NULL assignment to driver_data in error path in acpi_video_bus_add(). Signed-off-by: Michal Wilczynski <michal.wilczynski@xxxxxxxxx> --- drivers/acpi/acpi_video.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/acpi/acpi_video.c b/drivers/acpi/acpi_video.c index e17474949bbb..0c93b0ef0feb 100644 --- a/drivers/acpi/acpi_video.c +++ b/drivers/acpi/acpi_video.c @@ -2077,7 +2077,6 @@ static int acpi_video_bus_add(struct acpi_device *device) kfree(video->attached_array); err_free_video: kfree(video); - device->driver_data = NULL; return error; } -- 2.41.0