Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 280052
b: refs/heads/master
c: 11e3123
h: refs/heads/master
v: v3
  • Loading branch information
Axel Lin authored and Greg Kroah-Hartman committed Nov 27, 2011
1 parent 4871beb commit a85a7fe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 37 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: ccbc60d3e19a1b6ae66ca0d89b3da02dde62088b
refs/heads/master: 11e3123d9fdbe0aab1adf9ab5a5b1b28aa91daa7
12 changes: 1 addition & 11 deletions trunk/drivers/uio/uio_pdrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,7 @@ static struct platform_driver uio_pdrv = {
},
};

static int __init uio_pdrv_init(void)
{
return platform_driver_register(&uio_pdrv);
}

static void __exit uio_pdrv_exit(void)
{
platform_driver_unregister(&uio_pdrv);
}
module_init(uio_pdrv_init);
module_exit(uio_pdrv_exit);
module_platform_driver(uio_pdrv);

MODULE_AUTHOR("Uwe Kleine-Koenig");
MODULE_DESCRIPTION("Userspace I/O platform driver");
Expand Down
13 changes: 1 addition & 12 deletions trunk/drivers/uio/uio_pdrv_genirq.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,18 +273,7 @@ static struct platform_driver uio_pdrv_genirq = {
},
};

static int __init uio_pdrv_genirq_init(void)
{
return platform_driver_register(&uio_pdrv_genirq);
}

static void __exit uio_pdrv_genirq_exit(void)
{
platform_driver_unregister(&uio_pdrv_genirq);
}

module_init(uio_pdrv_genirq_init);
module_exit(uio_pdrv_genirq_exit);
module_platform_driver(uio_pdrv_genirq);

MODULE_AUTHOR("Magnus Damm");
MODULE_DESCRIPTION("Userspace I/O platform driver with generic IRQ handling");
Expand Down
14 changes: 1 addition & 13 deletions trunk/drivers/uio/uio_pruss.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,19 +227,7 @@ static struct platform_driver pruss_driver = {
},
};

static int __init pruss_init_module(void)
{
return platform_driver_register(&pruss_driver);
}

module_init(pruss_init_module);

static void __exit pruss_exit_module(void)
{
platform_driver_unregister(&pruss_driver);
}

module_exit(pruss_exit_module);
module_platform_driver(pruss_driver);

MODULE_LICENSE("GPL v2");
MODULE_VERSION(DRV_VERSION);
Expand Down

0 comments on commit a85a7fe

Please sign in to comment.