Commit 25d1c377 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

greybus: es1: allow the debug log to be stopped

If you write 0 to the debugfs file, the log will stop being updated.
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 0c264c6f
......@@ -592,14 +592,12 @@ static ssize_t apb1_log_enable_write(struct file *f, const char __user *buf,
if (retval)
return retval;
if (enable) {
if (enable)
usb_log_enable(es1);
retval = count;
} else {
retval = -EINVAL;
}
else
usb_log_disable(es1);
return retval;
return count;
}
static const struct file_operations apb1_log_enable_fops = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment