The patch titled sony-laptop: use NULL for pointer has been removed from the -mm tree. Its filename was sony-laptop-use-null-for-pointer.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: sony-laptop: use NULL for pointer From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Use NULL instead of 0 for pointer: drivers/misc/sony-laptop.c:1920:6: warning: Using plain integer as NULL pointer Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Acked-by: Mattia Dongili <malattia@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/misc/sony-laptop.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/misc/sony-laptop.c~sony-laptop-use-null-for-pointer drivers/misc/sony-laptop.c --- a/drivers/misc/sony-laptop.c~sony-laptop-use-null-for-pointer +++ a/drivers/misc/sony-laptop.c @@ -1917,7 +1917,8 @@ end: */ static int sony_pic_disable(struct acpi_device *device) { - if (ACPI_FAILURE(acpi_evaluate_object(device->handle, "_DIS", 0, NULL))) + if (ACPI_FAILURE(acpi_evaluate_object(device->handle, + "_DIS", NULL, NULL))) return -ENXIO; dprintk("Device disabled\n"); _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch sysctlc-add-text-telling-people-to-use-ctl_unnumbered-fix.patch git-acpi.patch git-alsa.patch git-mtd.patch git-unionfs.patch git-ipwireless_cs.patch mm-merge-populate-and-nopage-into-fault-fixes-nonlinear.patch doc-kernel-parameters-use-x86-32-tag-instead-of-ia-32.patch add-argv_split-fix.patch add-common-orderly_poweroff-fix.patch report-that-kernel-is-tainted-if-there-were-an-oops-before.patch kernel-doc-add-tools-doc-in-makefile.patch kernel-doc-fix-unnamed-struct-union-warning.patch kernel-doc-strip-c99-comments.patch kernel-doc-fix-leading-dot-in-man-mode-output.patch docbook-dont-reference-file-without-kernel-doc.patch profile-likely-unlikely-macros.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