diff options
Diffstat (limited to 'drivers/base/platform.c')
-rw-r--r-- | drivers/base/platform.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/base/platform.c b/drivers/base/platform.c index 0f7d434ce983..ed156a13aa40 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c | |||
@@ -10,6 +10,7 @@ | |||
10 | * information. | 10 | * information. |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #include <linux/string.h> | ||
13 | #include <linux/platform_device.h> | 14 | #include <linux/platform_device.h> |
14 | #include <linux/module.h> | 15 | #include <linux/module.h> |
15 | #include <linux/init.h> | 16 | #include <linux/init.h> |
@@ -213,14 +214,13 @@ EXPORT_SYMBOL_GPL(platform_device_add_resources); | |||
213 | int platform_device_add_data(struct platform_device *pdev, const void *data, | 214 | int platform_device_add_data(struct platform_device *pdev, const void *data, |
214 | size_t size) | 215 | size_t size) |
215 | { | 216 | { |
216 | void *d; | 217 | void *d = kmemdup(data, size, GFP_KERNEL); |
217 | 218 | ||
218 | d = kmalloc(size, GFP_KERNEL); | ||
219 | if (d) { | 219 | if (d) { |
220 | memcpy(d, data, size); | ||
221 | pdev->dev.platform_data = d; | 220 | pdev->dev.platform_data = d; |
221 | return 0; | ||
222 | } | 222 | } |
223 | return d ? 0 : -ENOMEM; | 223 | return -ENOMEM; |
224 | } | 224 | } |
225 | EXPORT_SYMBOL_GPL(platform_device_add_data); | 225 | EXPORT_SYMBOL_GPL(platform_device_add_data); |
226 | 226 | ||