Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 280688
b: refs/heads/master
c: 782ee87
h: refs/heads/master
v: v3
  • Loading branch information
Axel Lin authored and Greg Kroah-Hartman committed Nov 30, 2011
1 parent 04ad7f4 commit 99e0a59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 25 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: bb74041b1367b4935b8284a2b541f5e4365d3f50
refs/heads/master: 782ee87702fbd0a175da64a8e71e029b19ef97bf
13 changes: 1 addition & 12 deletions trunk/drivers/parport/parport_ax88796.c
Original file line number Diff line number Diff line change
Expand Up @@ -420,18 +420,7 @@ static struct platform_driver axdrv = {
.resume = parport_ax88796_resume,
};

static int __init parport_ax88796_init(void)
{
return platform_driver_register(&axdrv);
}

static void __exit parport_ax88796_exit(void)
{
platform_driver_unregister(&axdrv);
}

module_init(parport_ax88796_init)
module_exit(parport_ax88796_exit)
module_platform_driver(axdrv);

MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
MODULE_DESCRIPTION("AX88796 Parport parallel port driver");
Expand Down
13 changes: 1 addition & 12 deletions trunk/drivers/parport/parport_sunbpp.c
Original file line number Diff line number Diff line change
Expand Up @@ -391,21 +391,10 @@ static struct platform_driver bpp_sbus_driver = {
.remove = __devexit_p(bpp_remove),
};

static int __init parport_sunbpp_init(void)
{
return platform_driver_register(&bpp_sbus_driver);
}

static void __exit parport_sunbpp_exit(void)
{
platform_driver_unregister(&bpp_sbus_driver);
}
module_platform_driver(bpp_sbus_driver);

MODULE_AUTHOR("Derrick J Brashear");
MODULE_DESCRIPTION("Parport Driver for Sparc bidirectional Port");
MODULE_SUPPORTED_DEVICE("Sparc Bidirectional Parallel Port");
MODULE_VERSION("2.0");
MODULE_LICENSE("GPL");

module_init(parport_sunbpp_init)
module_exit(parport_sunbpp_exit)

0 comments on commit 99e0a59

Please sign in to comment.