Driver core: Constify struct sysfs_ops in struct kobj_type
[linux-2.6-block.git] / drivers / base / core.c
index 58ec1069f4b02dda61d74566506fb3aa04641fec..b0d6646a281467c48810e65f7dbac3689bbc0281 100644 (file)
@@ -100,7 +100,7 @@ static ssize_t dev_attr_store(struct kobject *kobj, struct attribute *attr,
        return ret;
 }
 
-static struct sysfs_ops dev_sysfs_ops = {
+static const struct sysfs_ops dev_sysfs_ops = {
        .show   = dev_attr_show,
        .store  = dev_attr_store,
 };