Skip to content

Commit

Permalink
ARM: SAMSUNG: Use generic s3c_set_platdata for TS
Browse files Browse the repository at this point in the history
Signed-off-by: Banajit Goswami <banajit.g@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
  • Loading branch information
Banajit Goswami authored and Kukjin Kim committed Jul 20, 2011
1 parent 96d7868 commit 07985bc
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions arch/arm/plat-samsung/dev-ts.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,6 @@ struct platform_device s3c_device_ts = {

void __init s3c24xx_ts_set_platdata(struct s3c2410_ts_mach_info *pd)
{
struct s3c2410_ts_mach_info *npd;

if (!pd) {
printk(KERN_ERR "%s: no platform data\n", __func__);
return;
}

npd = kmemdup(pd, sizeof(struct s3c2410_ts_mach_info), GFP_KERNEL);
if (!npd)
printk(KERN_ERR "%s: no memory for platform data\n", __func__);

s3c_device_ts.dev.platform_data = npd;
s3c_set_platdata(pd, sizeof(struct s3c2410_ts_mach_info),
&s3c_device_ts);
}

0 comments on commit 07985bc

Please sign in to comment.