aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c2410/pll.c
diff options
context:
space:
mode:
authorHeiko Stuebner <heiko@sntech.de>2012-01-27 15:35:25 +0900
committerKukjin Kim <kgene.kim@samsung.com>2012-01-27 15:35:47 +0900
commit04511a6faeed146030dcc5b892beff30fa0a7c9b (patch)
tree6b57884f33f018cfd781630a1f5542f43f174c79 /arch/arm/mach-s3c2410/pll.c
parentARM: EXYNOS: Fix "warning: initialization from incompatible pointer type" (diff)
downloadlinux-dev-04511a6faeed146030dcc5b892beff30fa0a7c9b.tar.xz
linux-dev-04511a6faeed146030dcc5b892beff30fa0a7c9b.zip
ARM: SAMSUNG: Fix missing api-change from subsys_interface change
Commit 4a858cfc9a (arm: convert sysdev_class to a regular subsystem) converted the samsung sysdevs into subsys_interface instances. While the original add-function only had a (struct sys_device *) parameter, the dev_add from subsys_interface needs (struct device *, struct subsys_interface *) leading to "initialized from incompatible pointer type" warnings. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Cc: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s3c2410/pll.c')
-rw-r--r--arch/arm/mach-s3c2410/pll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2410/pll.c b/arch/arm/mach-s3c2410/pll.c
index c07438bfc99f..e0b3b347da82 100644
--- a/arch/arm/mach-s3c2410/pll.c
+++ b/arch/arm/mach-s3c2410/pll.c
@@ -66,7 +66,7 @@ static struct cpufreq_frequency_table pll_vals_12MHz[] = {
{ .frequency = 270000000, .index = PLLVAL(127, 1, 1), },
};
-static int s3c2410_plls_add(struct device *dev)
+static int s3c2410_plls_add(struct device *dev, struct subsys_interface *sif)
{
return s3c_plltab_register(pll_vals_12MHz, ARRAY_SIZE(pll_vals_12MHz));
}