The patch titled drivers/acpi/video.c: remove unneeded memsets has been removed from the -mm tree. Its filename was drivers-acpi-videoc-remove-unneeded-memsets.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: drivers/acpi/video.c: remove unneeded memsets From: Zhang Rui <rui.zhang@xxxxxxxxx> device->cap and video->cap are zeroed initially so we don't need to clear them again. Signed-off-by: Zhang Rui <rui.zhang@xxxxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/acpi/video.c | 4 ---- 1 file changed, 4 deletions(-) diff -puN drivers/acpi/video.c~drivers-acpi-videoc-remove-unneeded-memsets drivers/acpi/video.c --- a/drivers/acpi/video.c~drivers-acpi-videoc-remove-unneeded-memsets +++ a/drivers/acpi/video.c @@ -936,9 +936,6 @@ static void acpi_video_device_find_cap(s { acpi_handle h_dummy1; - - memset(&device->cap, 0, sizeof(device->cap)); - if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_ADR", &h_dummy1))) { device->cap._ADR = 1; } @@ -1041,7 +1038,6 @@ static void acpi_video_bus_find_cap(stru { acpi_handle h_dummy1; - memset(&video->cap, 0, sizeof(video->cap)); if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_DOS", &h_dummy1))) { video->cap._DOS = 1; } _ Patches currently in -mm which might be from rui.zhang@xxxxxxxxx are origin.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html