Skip to content

Commit

Permalink
ARM: S3C64XX: Use generic s3c_set_platdata for OneNAND
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 17e86d3 commit 7569fc5
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions arch/arm/mach-s3c64xx/dev-onenand1.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
#include <mach/irqs.h>
#include <mach/map.h>

#include <plat/devs.h>

static struct resource s3c64xx_onenand1_resources[] = {
[0] = {
.start = S3C64XX_PA_ONENAND1,
Expand Down Expand Up @@ -46,10 +48,6 @@ struct platform_device s3c64xx_device_onenand1 = {

void s3c64xx_onenand1_set_platdata(struct onenand_platform_data *pdata)
{
struct onenand_platform_data *pd;

pd = kmemdup(pdata, sizeof(struct onenand_platform_data), GFP_KERNEL);
if (!pd)
printk(KERN_ERR "%s: no memory for platform data\n", __func__);
s3c64xx_device_onenand1.dev.platform_data = pd;
s3c_set_platdata(pdata, sizeof(struct onenand_platform_data),
&s3c64xx_device_onenand1);
}

0 comments on commit 7569fc5

Please sign in to comment.