Skip to content

Commit

Permalink
ACPI: asus_acpi: don't printk on writing garbage to proc files
Browse files Browse the repository at this point in the history
This reporting is useless (we errno anyway).

Signed-off-by: Alexey Dobriyan <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Len Brown <[email protected]>
  • Loading branch information
Alexey Dobriyan authored and lenb committed Oct 14, 2006
1 parent 6311f0d commit 6df0570
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions drivers/acpi/asus_acpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -629,9 +629,7 @@ proc_write_ledd(struct file *file, const char __user * buffer,
"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;
}

Expand Down Expand Up @@ -849,10 +847,7 @@ proc_write_brn(struct file *file, const char __user * buffer,
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;
}

Expand Down Expand Up @@ -897,9 +892,6 @@ proc_write_disp(struct file *file, const char __user * buffer,
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;
}

Expand Down

0 comments on commit 6df0570

Please sign in to comment.