summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s5pc100/setup-i2c1.c
diff options
context:
space:
mode:
authorKukjin Kim2010-10-01 13:50:20 +0200
committerKukjin Kim2010-10-23 04:50:59 +0200
commite27ecd7306992fbe58ab03f20aa3452a8b40499a (patch)
tree8823d4aa7e17f9f1741a1673d20b919be590700a /arch/arm/mach-s5pc100/setup-i2c1.c
parentARM: S5P64X0: 2nd Change to using s3c_gpio_cfgall_range() (diff)
downloadkernel-qcow2-linux-e27ecd7306992fbe58ab03f20aa3452a8b40499a.tar.gz
kernel-qcow2-linux-e27ecd7306992fbe58ab03f20aa3452a8b40499a.tar.xz
kernel-qcow2-linux-e27ecd7306992fbe58ab03f20aa3452a8b40499a.zip
ARM: S5PC100: 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-s5pc100/setup-i2c1.c')
-rw-r--r--arch/arm/mach-s5pc100/setup-i2c1.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/mach-s5pc100/setup-i2c1.c b/arch/arm/mach-s5pc100/setup-i2c1.c
index d1fec26b69ee..aaff74a90dee 100644
--- a/arch/arm/mach-s5pc100/setup-i2c1.c
+++ b/arch/arm/mach-s5pc100/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(S5PC100_GPD(5), S3C_GPIO_SFN(2));
- s3c_gpio_setpull(S5PC100_GPD(5), S3C_GPIO_PULL_UP);
- s3c_gpio_cfgpin(S5PC100_GPD(6), S3C_GPIO_SFN(2));
- s3c_gpio_setpull(S5PC100_GPD(6), S3C_GPIO_PULL_UP);
+ s3c_gpio_cfgall_range(S5PC100_GPD(5), 2,
+ S3C_GPIO_SFN(2), S3C_GPIO_PULL_UP);
}