diff options
author | Tomasz Figa <t.figa@samsung.com> | 2014-07-02 19:34:32 +0200 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2014-07-19 04:32:10 +0900 |
commit | 28c8331d386a0c4122501a848a8fc3680bb65427 (patch) | |
tree | a4c1eac3003e6e45be6e70255509b4d17074a897 /arch/arm/mach-s5pv210/setup-i2c0.c | |
parent | b672b27d232e337c848f51a371538b665ca4fcf3 (diff) | |
download | op-kernel-dev-28c8331d386a0c4122501a848a8fc3680bb65427.zip op-kernel-dev-28c8331d386a0c4122501a848a8fc3680bb65427.tar.gz |
ARM: S5PV210: Remove support for board files
Since all in-tree boards have been moved to device tree, we can now drop
legacy code and make mach-s5pv210 DT-only. This patch does it.
Signed-off-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s5pv210/setup-i2c0.c')
-rw-r--r-- | arch/arm/mach-s5pv210/setup-i2c0.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/mach-s5pv210/setup-i2c0.c b/arch/arm/mach-s5pv210/setup-i2c0.c index 4a15849..3658416 100644 --- a/arch/arm/mach-s5pv210/setup-i2c0.c +++ b/arch/arm/mach-s5pv210/setup-i2c0.c @@ -23,6 +23,8 @@ struct platform_device; /* don't need the contents */ void s3c_i2c0_cfg_gpio(struct platform_device *dev) { - s3c_gpio_cfgall_range(S5PV210_GPD1(0), 2, - S3C_GPIO_SFN(2), S3C_GPIO_PULL_UP); + /* + * FIXME: Used only by legacy code that is not used anymore, + * but still compiled in, until all dependencies are removed. + */ } |