S5PC2XX: Macro values for Pull Up and Driver Strength were wrong.
S5PC1XX: Macro values for Driver Strength were wrong.
Signed-off-by: Chander Kashyap <chander.kashyap@linaro.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
 
 /* Drive Strength level */
 #define GPIO_DRV_1X    0x0
-#define GPIO_DRV_2X    0x1
-#define GPIO_DRV_3X    0x2
+#define GPIO_DRV_3X    0x1
+#define GPIO_DRV_2X    0x2
 #define GPIO_DRV_4X    0x3
 #define GPIO_DRV_FAST  0x0
 #define GPIO_DRV_SLOW  0x1
 
 /* Pull mode */
 #define GPIO_PULL_NONE 0x0
 #define GPIO_PULL_DOWN 0x1
-#define GPIO_PULL_UP   0x2
+#define GPIO_PULL_UP   0x3
 
 /* Drive Strength level */
 #define GPIO_DRV_1X    0x0
-#define GPIO_DRV_2X    0x1
-#define GPIO_DRV_3X    0x2
+#define GPIO_DRV_3X    0x1
+#define GPIO_DRV_2X    0x2
 #define GPIO_DRV_4X    0x3
 #define GPIO_DRV_FAST  0x0
 #define GPIO_DRV_SLOW  0x1
-
 #endif