summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s5pv210/setup-i2c1.c
diff options
context:
space:
mode:
authorKukjin Kim2010-10-01 13:54:56 +0200
committerKukjin Kim2010-10-23 04:51:09 +0200
commit818ac8c134250c2f57425d1e3b3a0e19636b5506 (patch)
treeec67576a1e6feeb66f197315caed0347ba02f9d1 /arch/arm/mach-s5pv210/setup-i2c1.c
parentARM: S5PC100: 2nd Change to using s3c_gpio_cfgall_range() (diff)
downloadkernel-qcow2-linux-818ac8c134250c2f57425d1e3b3a0e19636b5506.tar.gz
kernel-qcow2-linux-818ac8c134250c2f57425d1e3b3a0e19636b5506.tar.xz
kernel-qcow2-linux-818ac8c134250c2f57425d1e3b3a0e19636b5506.zip
ARM: S5PV210: 2nd Change to using s3c_gpio_cfgall_range()
This patch changes the code setting range of GPIO pins' configuration and pull state to use the recently introduced s3c_gpio_cfgpin_range(). NOTE: This is for missed things from the previous patch. Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s5pv210/setup-i2c1.c')
-rw-r--r--arch/arm/mach-s5pv210/setup-i2c1.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/mach-s5pv210/setup-i2c1.c b/arch/arm/mach-s5pv210/setup-i2c1.c
index 148bb7857d89..f61365a34c56 100644
--- a/arch/arm/mach-s5pv210/setup-i2c1.c
+++ b/arch/arm/mach-s5pv210/setup-i2c1.c
@@ -23,8 +23,6 @@ struct platform_device; /* don't need the contents */
void s3c_i2c1_cfg_gpio(struct platform_device *dev)
{
- s3c_gpio_cfgpin(S5PV210_GPD1(2), S3C_GPIO_SFN(2));
- s3c_gpio_setpull(S5PV210_GPD1(2), S3C_GPIO_PULL_UP);
- s3c_gpio_cfgpin(S5PV210_GPD1(3), S3C_GPIO_SFN(2));
- s3c_gpio_setpull(S5PV210_GPD1(3), S3C_GPIO_PULL_UP);
+ s3c_gpio_cfgall_range(S5PV210_GPD1(2), 2,
+ S3C_GPIO_SFN(2), S3C_GPIO_PULL_UP);
}