aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/property.h
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2017-02-02 17:41:25 -0800
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2017-02-07 13:21:15 +0100
commitbec84da8d1da6677c458e6eedd8e814eea91b9fc (patch)
treec78b997b7d47c5040f67fdabb3770e5dc0057c63 /include/linux/property.h
parentLinux 4.10-rc7 (diff)
downloadlinux-dev-bec84da8d1da6677c458e6eedd8e814eea91b9fc.tar.xz
linux-dev-bec84da8d1da6677c458e6eedd8e814eea91b9fc.zip
device property: allow to constify properties
There is no reason why statically defined properties should be modifiable, so let's make device_add_properties() and the rest of pset_*() functions to take const pointers to properties. This will allow us to mark properties as const/__initconst at definition sites. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/linux/property.h')
-rw-r--r--include/linux/property.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/property.h b/include/linux/property.h
index 856e50b2140c..d37a4498b3ac 100644
--- a/include/linux/property.h
+++ b/include/linux/property.h
@@ -242,7 +242,7 @@ struct property_entry {
}
int device_add_properties(struct device *dev,
- struct property_entry *properties);
+ const struct property_entry *properties);
void device_remove_properties(struct device *dev);
bool device_dma_supported(struct device *dev);