diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-16 11:27:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-16 11:27:10 -0400 |
commit | ab86e5765d41a5eb4239a1c04d613db87bea5ed8 (patch) | |
tree | a41224d4874c2f90e0b423786f00bedf6f3e8bfa /drivers/base/platform.c | |
parent | 7ea61767e41e2baedd6a968d13f56026522e1207 (diff) | |
parent | 2b2af54a5bb6f7e80ccf78f20084b93c398c3a8b (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6:
Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev
debugfs: Modify default debugfs directory for debugging pktcdvd.
debugfs: Modified default dir of debugfs for debugging UHCI.
debugfs: Change debugfs directory of IWMC3200
debugfs: Change debuhgfs directory of trace-events-sample.h
debugfs: Fix mount directory of debugfs by default in events.txt
hpilo: add poll f_op
hpilo: add interrupt handler
hpilo: staging for interrupt handling
driver core: platform_device_add_data(): use kmemdup()
Driver core: Add support for compatibility classes
uio: add generic driver for PCI 2.3 devices
driver-core: move dma-coherent.c from kernel to driver/base
mem_class: fix bug
mem_class: use minor as index instead of searching the array
driver model: constify attribute groups
UIO: remove 'default n' from Kconfig
Driver core: Add accessor for device platform data
Driver core: move dev_get/set_drvdata to drivers/base/dd.c
Driver core: add new device to bus's list before probing
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 | ||