Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348176
b: refs/heads/master
c: 6dfb671
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jan 3, 2013
1 parent 7278aae commit 241764f
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: b92c914d02ad7a77513076515ffe9f26db1fe8af
refs/heads/master: 6dfb6715b58a9d184188188779f9f8f27e558042
6 changes: 3 additions & 3 deletions trunk/drivers/vlynq/vlynq.c
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ static int vlynq_remove(struct platform_device *pdev)
static struct platform_driver vlynq_platform_driver = {
.driver.name = "vlynq",
.probe = vlynq_probe,
.remove = __devexit_p(vlynq_remove),
.remove = vlynq_remove,
};

struct bus_type vlynq_bus_type = {
Expand All @@ -783,7 +783,7 @@ struct bus_type vlynq_bus_type = {
};
EXPORT_SYMBOL(vlynq_bus_type);

static int __devinit vlynq_init(void)
static int vlynq_init(void)
{
int res = 0;

Expand All @@ -803,7 +803,7 @@ static int __devinit vlynq_init(void)
return res;
}

static void __devexit vlynq_exit(void)
static void vlynq_exit(void)
{
platform_driver_unregister(&vlynq_platform_driver);
bus_unregister(&vlynq_bus_type);
Expand Down

0 comments on commit 241764f

Please sign in to comment.