[PATCH 4/20] Mark platform device data as const
From: Jeremy Kerr <jk@ozlabs.org>
Date: 2006-07-04 06:47:17
platform_device_add_data()'s data argument can be qualified as const - the function just copies it to another buffer. This neatens-up storing other const-ed data there. Built for powerpc and i386 Signed-off-by: Jeremy Kerr <jk@ozlabs.org> --- paulus - pending Greg KH's ack, please apply platform.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: linux-2.6/drivers/base/platform.c ===================================================================
--- linux-2.6.orig/drivers/base/platform.c
+++ linux-2.6/drivers/base/platform.c@@ -212,7 +212,8 @@ EXPORT_SYMBOL_GPL(platform_device_add_re * pointer. The memory associated with the platform data will be freed * when the platform device is released. */ -int platform_device_add_data(struct platform_device *pdev, void *data, size_t size) +int platform_device_add_data(struct platform_device *pdev, const void *data, + size_t size) {
void *d;