diff options
author | Markus Armbruster <armbru@redhat.com> | 2008-05-26 18:31:09 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-27 04:11:36 -0400 |
commit | 1e892c959da42278e60b21f5ecfd6fba0efff313 (patch) | |
tree | a2b3aacc953daab2b73d02bc9560454d894fb588 /drivers | |
parent | 6ba0e7b36c7cc1745b3cbeda244d14edae3ad058 (diff) |
xen pvfb: Module aliases to support module autoloading
These are mostly for completeness and consistency with the other
frontends, as PVFB is typically compiled in rather than a module.
Derived from
http://xenbits.xensource.com/linux-2.6.18-xen.hg?rev/5e294e29a43e
While there, add module descriptions.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/xen-kbdfront.c | 2 | ||||
-rw-r--r-- | drivers/video/xen-fbfront.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/drivers/input/xen-kbdfront.c b/drivers/input/xen-kbdfront.c index 9da4452786fa..eaf69cf5b444 100644 --- a/drivers/input/xen-kbdfront.c +++ b/drivers/input/xen-kbdfront.c | |||
@@ -343,4 +343,6 @@ static void __exit xenkbd_cleanup(void) | |||
343 | module_init(xenkbd_init); | 343 | module_init(xenkbd_init); |
344 | module_exit(xenkbd_cleanup); | 344 | module_exit(xenkbd_cleanup); |
345 | 345 | ||
346 | MODULE_DESCRIPTION("Xen virtual keyboard/pointer device frontend"); | ||
346 | MODULE_LICENSE("GPL"); | 347 | MODULE_LICENSE("GPL"); |
348 | MODULE_ALIAS("xen:vkbd"); | ||
diff --git a/drivers/video/xen-fbfront.c b/drivers/video/xen-fbfront.c index 4e10876e62fc..5553e517563e 100644 --- a/drivers/video/xen-fbfront.c +++ b/drivers/video/xen-fbfront.c | |||
@@ -572,4 +572,6 @@ static void __exit xenfb_cleanup(void) | |||
572 | module_init(xenfb_init); | 572 | module_init(xenfb_init); |
573 | module_exit(xenfb_cleanup); | 573 | module_exit(xenfb_cleanup); |
574 | 574 | ||
575 | MODULE_DESCRIPTION("Xen virtual framebuffer device frontend"); | ||
575 | MODULE_LICENSE("GPL"); | 576 | MODULE_LICENSE("GPL"); |
577 | MODULE_ALIAS("xen:vfb"); | ||