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 <lkp@intel.com>
Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
This commit is contained in:
kbuild test robot 2019-06-18 10:32:31 +02:00 committed by Enric Balletbo i Serra
parent 1fbc6ec2f3
commit 35b52b3315

View File

@ -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,