The patch titled asus_acpi: don't printk on writing garbage to proc files has been removed from the -mm tree. Its filename is asus_acpi-dont-printk-on-writing-garbage-to-proc-files.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: asus_acpi: don't printk on writing garbage to proc files From: Alexey Dobriyan <adobriyan@xxxxxxxxx> * This reporting is useless (you get errno anyway). * This reporting is already inconsistent in driver. * Looks like created files in proc are rw-rw-rw- by default. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/acpi/asus_acpi.c | 10 +--------- 1 files changed, 1 insertion(+), 9 deletions(-) diff -puN drivers/acpi/asus_acpi.c~asus_acpi-dont-printk-on-writing-garbage-to-proc-files drivers/acpi/asus_acpi.c --- a/drivers/acpi/asus_acpi.c~asus_acpi-dont-printk-on-writing-garbage-to-proc-files +++ a/drivers/acpi/asus_acpi.c @@ -629,9 +629,7 @@ proc_write_ledd(struct file *file, const "Asus ACPI: LED display write failed\n"); else hotk->ledd_status = (u32) value; - } else if (rv < 0) - printk(KERN_WARNING "Asus ACPI: Error reading user input\n"); - + } return rv; } @@ -849,10 +847,7 @@ proc_write_brn(struct file *file, const value = (0 < value) ? ((15 < value) ? 15 : value) : 0; /* 0 <= value <= 15 */ set_brightness(value); - } else if (rv < 0) { - printk(KERN_WARNING "Asus ACPI: Error reading user input\n"); } - return rv; } @@ -897,9 +892,6 @@ proc_write_disp(struct file *file, const rv = parse_arg(buffer, count, &value); if (rv > 0) set_display(value); - else if (rv < 0) - printk(KERN_WARNING "Asus ACPI: Error reading user input\n"); - return rv; } _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch lockd-endianness-annotations.patch config_pm=n-slim-drivers-pcmcia.patch i82092-wire-up-errors-from-pci_register_driver.patch megaraid-fix-warnings-when-config_proc_fs=n.patch scsi_libc-use-build_bug_on.patch prism54-use-build_bug_on.patch x86_64-use-build_bug_on-in-fpu-code.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