diff options
Diffstat (limited to 'drivers/base/sys.c')
| -rw-r--r-- | drivers/base/sys.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/base/sys.c b/drivers/base/sys.c index 747c99e0568..8980feec5d1 100644 --- a/drivers/base/sys.c +++ b/drivers/base/sys.c @@ -54,7 +54,7 @@ sysdev_store(struct kobject *kobj, struct attribute *attr,  	return -EIO;  } -static struct sysfs_ops sysfs_ops = { +static const struct sysfs_ops sysfs_ops = {  	.show	= sysdev_show,  	.store	= sysdev_store,  }; @@ -104,7 +104,7 @@ static ssize_t sysdev_class_store(struct kobject *kobj, struct attribute *attr,  	return -EIO;  } -static struct sysfs_ops sysfs_class_ops = { +static const struct sysfs_ops sysfs_class_ops = {  	.show	= sysdev_class_show,  	.store	= sysdev_class_store,  };  |