diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2017-06-02 01:43:27 -0400 |
---|---|---|
committer | Jan Kiszka <jan.kiszka@siemens.com> | 2017-07-03 02:31:43 -0400 |
commit | 277036f05be242540b7bfe75f226107d04f51b06 (patch) | |
tree | 8a67a43dc8be9e4b7ae4323aaf142de9aba70211 /drivers/base/platform.c | |
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/platform.c')
-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); | |||
344 | * platform device is released. | 344 | * platform device is released. |
345 | */ | 345 | */ |
346 | int platform_device_add_properties(struct platform_device *pdev, | 346 | int platform_device_add_properties(struct platform_device *pdev, |
347 | struct property_entry *properties) | 347 | const struct property_entry *properties) |
348 | { | 348 | { |
349 | return device_add_properties(&pdev->dev, properties); | 349 | return device_add_properties(&pdev->dev, properties); |
350 | } | 350 | } |