mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
ARM: S5PV310: Change to using s3c_gpio_cfgall_range()
Change the code setting a range of GPIO pins' configuration and pull state to use the recently introduced s3c_gpio_cfgall_range(). Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
53134a740e
commit
861004657e
@ -21,7 +21,6 @@ struct platform_device; /* don't need the contents */
|
||||
|
||||
void s3c_i2c0_cfg_gpio(struct platform_device *dev)
|
||||
{
|
||||
s3c_gpio_cfgpin_range(S5PV310_GPD1(0), 2, S3C_GPIO_SFN(2));
|
||||
s3c_gpio_setpull(S5PV310_GPD1(0), S3C_GPIO_PULL_UP);
|
||||
s3c_gpio_setpull(S5PV310_GPD1(1), S3C_GPIO_PULL_UP);
|
||||
s3c_gpio_cfgall_range(S5PV310_GPD1(0), 2,
|
||||
S3C_GPIO_SFN(2), S3C_GPIO_PULL_UP);
|
||||
}
|
||||
|
@ -18,7 +18,6 @@ struct platform_device; /* don't need the contents */
|
||||
|
||||
void s3c_i2c1_cfg_gpio(struct platform_device *dev)
|
||||
{
|
||||
s3c_gpio_cfgpin_range(S5PV310_GPD1(2), 2, S3C_GPIO_SFN(2));
|
||||
s3c_gpio_setpull(S5PV310_GPD1(2), S3C_GPIO_PULL_UP);
|
||||
s3c_gpio_setpull(S5PV310_GPD1(3), S3C_GPIO_PULL_UP);
|
||||
s3c_gpio_cfgall_range(S5PV310_GPD1(2), 2,
|
||||
S3C_GPIO_SFN(2), S3C_GPIO_PULL_UP);
|
||||
}
|
||||
|
@ -18,7 +18,6 @@ struct platform_device; /* don't need the contents */
|
||||
|
||||
void s3c_i2c2_cfg_gpio(struct platform_device *dev)
|
||||
{
|
||||
s3c_gpio_cfgpin_range(S5PV310_GPA0(6), 2, S3C_GPIO_SFN(3));
|
||||
s3c_gpio_setpull(S5PV310_GPA0(6), S3C_GPIO_PULL_UP);
|
||||
s3c_gpio_setpull(S5PV310_GPA0(7), S3C_GPIO_PULL_UP);
|
||||
s3c_gpio_cfgall_range(S5PV310_GPA0(6), 2,
|
||||
S3C_GPIO_SFN(3), S3C_GPIO_PULL_UP);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user