From: Alan Cox Date: Mon, 20 Mar 2017 14:42:41 +0000 (+0000) Subject: atomisp: remove a sysfs error message that can be used to log spam X-Git-Tag: Ubuntu-5.2.0-15.16~6936^2~412 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=3797616eaa3000f5526aab8ef02000a92fbc5415;p=mirror_ubuntu-eoan-kernel.git atomisp: remove a sysfs error message that can be used to log spam Instead of logging this just report ERANGE as an error, which will give something close to the right user space report. The others of these were already removed by Dan Carpenter's patch. Signed-off-by: Alan Cox Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/media/atomisp/pci/atomisp2/atomisp_drvfs.c b/drivers/staging/media/atomisp/pci/atomisp2/atomisp_drvfs.c index 7f7c6d5133d2..fcfe8d7190b0 100644 --- a/drivers/staging/media/atomisp/pci/atomisp2/atomisp_drvfs.c +++ b/drivers/staging/media/atomisp/pci/atomisp2/atomisp_drvfs.c @@ -107,9 +107,7 @@ static ssize_t iunit_dbglvl_store(struct device_driver *drv, const char *buf, if (kstrtouint(buf, 10, &iunit_debug.dbglvl) || iunit_debug.dbglvl < 1 || iunit_debug.dbglvl > 9) { - dev_err(atomisp_dev, "%s setting %d value invalid, should be [1,9]\n", - __func__, iunit_debug.dbglvl); - return -EINVAL; + return -ERANGE; } atomisp_css_debug_set_dtrace_level(iunit_debug.dbglvl);