Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6df05702 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Len Brown
Browse files

ACPI: asus_acpi: don't printk on writing garbage to proc files



This reporting is useless (we errno anyway).

Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 6311f0da
Loading
Loading
Loading
Loading
+1 −9
Original line number Diff line number Diff line
@@ -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;
}

@@ -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;
}

@@ -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;
}