]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - arch/arm/mach-s5pv210/setup-i2c0.c
ARM: S5PV210: add common I2C device helpers
[net-next-2.6.git] / arch / arm / mach-s5pv210 / setup-i2c0.c
index 9ec6845840e561e108b6f7dfe635be00d0029643..c718253c70b8e2d6016dd24d0a8fa7f495efb467 100644 (file)
@@ -1,6 +1,6 @@
 /* linux/arch/arm/mach-s5pv210/setup-i2c0.c
  *
- * Copyright (c) 2009 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
  *             http://www.samsung.com/
  *
  * I2C0 GPIO configuration.
 
 struct platform_device; /* don't need the contents */
 
+#include <mach/gpio.h>
 #include <plat/iic.h>
+#include <plat/gpio-cfg.h>
 
 void s3c_i2c0_cfg_gpio(struct platform_device *dev)
 {
-       /* Will be populated later */
+       s3c_gpio_cfgpin(S5PV210_GPD1(0), S3C_GPIO_SFN(2));
+       s3c_gpio_setpull(S5PV210_GPD1(0), S3C_GPIO_PULL_UP);
+       s3c_gpio_cfgpin(S5PV210_GPD1(1), S3C_GPIO_SFN(2));
+       s3c_gpio_setpull(S5PV210_GPD1(1), S3C_GPIO_PULL_UP);
 }