Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 177073
b: refs/heads/master
c: 010c33c
h: refs/heads/master
i:
  177071: 3de9e2d
v: v3
  • Loading branch information
Dmitry Torokhov committed Dec 12, 2009
1 parent 7cae41f commit e2e4726
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: 266429df3745aecd230831a4c2983247d3d38ecd
refs/heads/master: 010c33cc7907239ffc8f49f09ccb3dc6d84a0369
10 changes: 5 additions & 5 deletions trunk/drivers/input/serio/sa1111ps2.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ static void __devinit ps2_clear_input(struct ps2if *ps2if)
}
}

static inline unsigned int
ps2_test_one(struct ps2if *ps2if, unsigned int mask)
static unsigned int __devinit ps2_test_one(struct ps2if *ps2if,
unsigned int mask)
{
unsigned int val;

Expand All @@ -197,7 +197,7 @@ ps2_test_one(struct ps2if *ps2if, unsigned int mask)
* Test the keyboard interface. We basically check to make sure that
* we can drive each line to the keyboard independently of each other.
*/
static int __init ps2_test(struct ps2if *ps2if)
static int __devinit ps2_test(struct ps2if *ps2if)
{
unsigned int stat;
int ret = 0;
Expand Down Expand Up @@ -312,7 +312,7 @@ static int __devinit ps2_probe(struct sa1111_dev *dev)
/*
* Remove one device from this driver.
*/
static int ps2_remove(struct sa1111_dev *dev)
static int __devexit ps2_remove(struct sa1111_dev *dev)
{
struct ps2if *ps2if = sa1111_get_drvdata(dev);

Expand All @@ -335,7 +335,7 @@ static struct sa1111_driver ps2_driver = {
},
.devid = SA1111_DEVID_PS2,
.probe = ps2_probe,
.remove = ps2_remove,
.remove = __devexit_p(ps2_remove),
};

static int __init ps2_init(void)
Expand Down

0 comments on commit e2e4726

Please sign in to comment.