From: kbuild test robot Date: Tue, 18 Jun 2019 08:32:31 +0000 (+0200) Subject: platform/chrome: cros_ec_debugfs: cros_ec_uptime_fops can be static X-Git-Tag: v5.3-rc1~121^2~9 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=35b52b3315a21d3314f859814717ca3583660f73;p=linux-2.6-block.git platform/chrome: cros_ec_debugfs: cros_ec_uptime_fops can be static Fixes: 909447f683b3 ("platform/chrome: cros_ec_debugfs: Add debugfs entry to retrieve EC uptime") Signed-off-by: kbuild test robot Signed-off-by: Enric Balletbo i Serra --- diff --git a/drivers/platform/chrome/cros_ec_debugfs.c b/drivers/platform/chrome/cros_ec_debugfs.c index cd3fb9c22a44..7ee060743844 100644 --- a/drivers/platform/chrome/cros_ec_debugfs.c +++ b/drivers/platform/chrome/cros_ec_debugfs.c @@ -286,7 +286,7 @@ static const struct file_operations cros_ec_pdinfo_fops = { .llseek = default_llseek, }; -const struct file_operations cros_ec_uptime_fops = { +static const struct file_operations cros_ec_uptime_fops = { .owner = THIS_MODULE, .open = simple_open, .read = cros_ec_uptime_read,