Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 221119
b: refs/heads/master
c: 3e9b726
h: refs/heads/master
i:
  221117: faeb0e5
  221115: e87a709
  221111: 4be237e
  221103: f781b80
  221087: 32e8b68
  221055: d49e8b6
v: v3
  • Loading branch information
Kukjin Kim committed Oct 23, 2010
1 parent a60d1a0 commit 5a22a08
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5a350da428daace38b0762b63d42f4b441e8bad4
refs/heads/master: 3e9b7261502e78e351fc6a61a9b7241433c779c4
7 changes: 2 additions & 5 deletions trunk/arch/arm/mach-s3c64xx/setup-fb-24bpp.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@

extern void s3c64xx_fb_gpio_setup_24bpp(void)
{
s3c_gpio_cfgall_range(S3C64XX_GPI(0), 16,
S3C_GPIO_SFN(2), S3C_GPIO_PULL_NONE);

s3c_gpio_cfgall_range(S3C64XX_GPJ(0), 12,
S3C_GPIO_SFN(2), S3C_GPIO_PULL_NONE);
s3c_gpio_cfgrange_nopull(S3C64XX_GPI(0), 16, S3C_GPIO_SFN(2));
s3c_gpio_cfgrange_nopull(S3C64XX_GPJ(0), 12, S3C_GPIO_SFN(2));
}
6 changes: 2 additions & 4 deletions trunk/arch/arm/mach-s3c64xx/setup-keypad.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@
void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols)
{
/* Set all the necessary GPK pins to special-function 3: KP_ROW[x] */
s3c_gpio_cfgall_range(S3C64XX_GPK(8), 8 + rows,
S3C_GPIO_SFN(3), S3C_GPIO_PULL_NONE);
s3c_gpio_cfgrange_nopull(S3C64XX_GPK(8), 8 + rows, S3C_GPIO_SFN(3));

/* Set all the necessary GPL pins to special-function 3: KP_COL[x] */
s3c_gpio_cfgall_range(S3C64XX_GPL(0), cols,
S3C_GPIO_SFN(3), S3C_GPIO_PULL_NONE);
s3c_gpio_cfgrange_nopull(S3C64XX_GPL(0), cols, S3C_GPIO_SFN(3));
}

0 comments on commit 5a22a08

Please sign in to comment.