Commit b19952ad authored by Banajit Goswami's avatar Banajit Goswami Committed by Kukjin Kim

ARM: SAMSUNG: Use generic s3c_set_platdata for USB OHCI

Signed-off-by: default avatarBanajit Goswami <banajit.g@samsung.com>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 2eac3ad8
...@@ -60,11 +60,6 @@ EXPORT_SYMBOL(s3c_device_ohci); ...@@ -60,11 +60,6 @@ EXPORT_SYMBOL(s3c_device_ohci);
*/ */
void __init s3c_ohci_set_platdata(struct s3c2410_hcd_info *info) void __init s3c_ohci_set_platdata(struct s3c2410_hcd_info *info)
{ {
struct s3c2410_hcd_info *npd; s3c_set_platdata(info, sizeof(struct s3c2410_hcd_info),
&s3c_device_ohci);
npd = kmemdup(info, sizeof(struct s3c2410_hcd_info), GFP_KERNEL);
if (!npd)
printk(KERN_ERR "%s: no memory for platform data\n", __func__);
s3c_device_ohci.dev.platform_data = npd;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment