diff options
author | Jan Kiszka | 2017-06-02 07:43:27 +0200 |
---|---|---|
committer | Jan Kiszka | 2017-07-03 08:31:43 +0200 |
commit | 277036f05be242540b7bfe75f226107d04f51b06 (patch) | |
tree | 8a67a43dc8be9e4b7ae4323aaf142de9aba70211 /drivers/base | |
parent | 0d963ebf57d4c6374b3a33050a18af23c1e2ede1 (diff) |
platform: Accept const properties
Aligns us with device_add_properties, the function we call.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/platform.c b/drivers/base/platform.c index a102152301c8..71ea6f4d33c2 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c @@ -344,7 +344,7 @@ EXPORT_SYMBOL_GPL(platform_device_add_data); * platform device is released. */ int platform_device_add_properties(struct platform_device *pdev, - struct property_entry *properties) + const struct property_entry *properties) { return device_add_properties(&pdev->dev, properties); } |