Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 177070
b: refs/heads/master
c: 1def7af
h: refs/heads/master
v: v3
  • Loading branch information
Dmitry Torokhov committed Dec 12, 2009
1 parent bb9f910 commit 2a7a0f1
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: e40ec6ff2f42b5516d77a5c34bfa6a9ce45834f4
refs/heads/master: 1def7afa748b964aeb0033d0cb78aabf3d3f3683
6 changes: 3 additions & 3 deletions trunk/drivers/input/serio/altera_ps2.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static void altera_ps2_close(struct serio *io)
/*
* Add one device to this driver.
*/
static int altera_ps2_probe(struct platform_device *pdev)
static int __devinit altera_ps2_probe(struct platform_device *pdev)
{
struct ps2if *ps2if;
struct serio *serio;
Expand Down Expand Up @@ -155,7 +155,7 @@ static int altera_ps2_probe(struct platform_device *pdev)
/*
* Remove one device from this driver.
*/
static int altera_ps2_remove(struct platform_device *pdev)
static int __devexit altera_ps2_remove(struct platform_device *pdev)
{
struct ps2if *ps2if = platform_get_drvdata(pdev);

Expand All @@ -175,7 +175,7 @@ static int altera_ps2_remove(struct platform_device *pdev)
*/
static struct platform_driver altera_ps2_driver = {
.probe = altera_ps2_probe,
.remove = altera_ps2_remove,
.remove = __devexit_p(altera_ps2_remove),
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
Expand Down

0 comments on commit 2a7a0f1

Please sign in to comment.