diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2017-06-02 08:43:27 +0300 |
---|---|---|
committer | Jan Kiszka <jan.kiszka@siemens.com> | 2017-07-03 09:31:43 +0300 |
commit | 277036f05be242540b7bfe75f226107d04f51b06 (patch) | |
tree | 8a67a43dc8be9e4b7ae4323aaf142de9aba70211 /include/linux/platform_device.h | |
parent | 0d963ebf57d4c6374b3a33050a18af23c1e2ede1 (diff) | |
download | linux-277036f05be242540b7bfe75f226107d04f51b06.tar.xz |
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 'include/linux/platform_device.h')
-rw-r--r-- | include/linux/platform_device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/platform_device.h b/include/linux/platform_device.h index 98c2a7c7108e..49f634d96118 100644 --- a/include/linux/platform_device.h +++ b/include/linux/platform_device.h @@ -172,7 +172,7 @@ extern int platform_device_add_resources(struct platform_device *pdev, extern int platform_device_add_data(struct platform_device *pdev, const void *data, size_t size); extern int platform_device_add_properties(struct platform_device *pdev, - struct property_entry *properties); + const struct property_entry *properties); extern int platform_device_add(struct platform_device *pdev); extern void platform_device_del(struct platform_device *pdev); extern void platform_device_put(struct platform_device *pdev); |