Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 57414
b: refs/heads/master
c: c0f85a8
h: refs/heads/master
v: v3
  • Loading branch information
Russell King authored and Russell King committed Jun 5, 2007
1 parent 52a4ebc commit 7277086
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: db002b8597df84643e949cce793d0f696f100c9e
refs/heads/master: c0f85a82484c25d23b44a87a35daddb2b276b4aa
6 changes: 3 additions & 3 deletions trunk/drivers/input/keyboard/pxa27x_keyboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ static int pxakbd_open(struct input_dev *dev)
KPREC = 0x7F;

/* Enable unit clock */
pxa_set_cken(CKEN19_KEYPAD, 1);
pxa_set_cken(CKEN_KEYPAD, 1);

return 0;
}

static void pxakbd_close(struct input_dev *dev)
{
/* Disable clock unit */
pxa_set_cken(CKEN19_KEYPAD, 0);
pxa_set_cken(CKEN_KEYPAD, 0);
}

#ifdef CONFIG_PM
Expand Down Expand Up @@ -185,7 +185,7 @@ static int __devinit pxakbd_probe(struct platform_device *pdev)
DRIVER_NAME, pdev);
if (error) {
printk(KERN_ERR "Cannot request keypad IRQ\n");
pxa_set_cken(CKEN19_KEYPAD, 0);
pxa_set_cken(CKEN_KEYPAD, 0);
goto err_free_dev;
}

Expand Down

0 comments on commit 7277086

Please sign in to comment.