Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 131925
b: refs/heads/master
c: d63dab0
h: refs/heads/master
i:
  131923: 4c38644
v: v3
  • Loading branch information
Uwe Kleine-König authored and Dmitry Torokhov committed Jan 14, 2009
1 parent 59db752 commit 8b3540b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 840207edfa8b5e5b46e0d268bf33efe71fecea20
refs/heads/master: d63dab00e85641515a0a060e6de93e6b7f450665
8 changes: 4 additions & 4 deletions trunk/drivers/input/keyboard/omap-keypad.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ static int omap_kp_resume(struct platform_device *dev)
#define omap_kp_resume NULL
#endif

static int __init omap_kp_probe(struct platform_device *pdev)
static int __devinit omap_kp_probe(struct platform_device *pdev)
{
struct omap_kp *omap_kp;
struct input_dev *input_dev;
Expand Down Expand Up @@ -422,7 +422,7 @@ static int __init omap_kp_probe(struct platform_device *pdev)
return -EINVAL;
}

static int omap_kp_remove(struct platform_device *pdev)
static int __devexit omap_kp_remove(struct platform_device *pdev)
{
struct omap_kp *omap_kp = platform_get_drvdata(pdev);

Expand Down Expand Up @@ -454,7 +454,7 @@ static int omap_kp_remove(struct platform_device *pdev)

static struct platform_driver omap_kp_driver = {
.probe = omap_kp_probe,
.remove = omap_kp_remove,
.remove = __devexit_p(omap_kp_remove),
.suspend = omap_kp_suspend,
.resume = omap_kp_resume,
.driver = {
Expand All @@ -463,7 +463,7 @@ static struct platform_driver omap_kp_driver = {
},
};

static int __devinit omap_kp_init(void)
static int __init omap_kp_init(void)
{
printk(KERN_INFO "OMAP Keypad Driver\n");
return platform_driver_register(&omap_kp_driver);
Expand Down

0 comments on commit 8b3540b

Please sign in to comment.