Skip to content

Commit

Permalink
hvc_console: Add __init and __exit to hvc_vio
Browse files Browse the repository at this point in the history
Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of char/hvc_vio.c

Please have a look at the small patch and either pull it through
your tree, or please ack' it so Jiri can pull it through the trivial tree.

linux version 2.6.31-rc6 - linus git tree, Do 20. Aug 22:26:06 CEST 2009

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
  • Loading branch information
Peter Huewe authored and Benjamin Herrenschmidt committed Aug 28, 2009
1 parent 80d3e8a commit 948c28f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/char/hvc_vio.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ static struct vio_driver hvc_vio_driver = {
}
};

static int hvc_vio_init(void)
static int __init hvc_vio_init(void)
{
int rc;

Expand All @@ -134,7 +134,7 @@ static int hvc_vio_init(void)
}
module_init(hvc_vio_init); /* after drivers/char/hvc_console.c */

static void hvc_vio_exit(void)
static void __exit hvc_vio_exit(void)
{
vio_unregister_driver(&hvc_vio_driver);
}
Expand Down

0 comments on commit 948c28f

Please sign in to comment.