Skip to content

Commit

Permalink
ARM: SAMSUNG: Use generic s3c_set_platdata for HWMON
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 6b5738c commit 2eac3ad
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions arch/arm/plat-samsung/dev-hwmon.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,6 @@ struct platform_device s3c_device_hwmon = {

void __init s3c_hwmon_set_platdata(struct s3c_hwmon_pdata *pd)
{
struct s3c_hwmon_pdata *npd;

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

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

s3c_device_hwmon.dev.platform_data = npd;
s3c_set_platdata(pd, sizeof(struct s3c_hwmon_pdata),
&s3c_device_hwmon);
}

0 comments on commit 2eac3ad

Please sign in to comment.