Commit 95a2d0bb authored by Dave Jones's avatar Dave Jones Committed by Dave Jones

[AGPGART] Add back dummy module exit to keep things happy.

parent 64cf5a02
...@@ -297,8 +297,15 @@ static int __init agp_init(void) ...@@ -297,8 +297,15 @@ static int __init agp_init(void)
return 0; return 0;
} }
void __exit agp_exit(void)
{
}
MODULE_AUTHOR("Dave Jones <davej@codemonkey.org.uk>"); MODULE_AUTHOR("Dave Jones <davej@codemonkey.org.uk>");
MODULE_DESCRIPTION("AGP GART driver"); MODULE_DESCRIPTION("AGP GART driver");
MODULE_LICENSE("GPL and additional rights"); MODULE_LICENSE("GPL and additional rights");
module_init(agp_init); module_init(agp_init);
module_exit(agp_exit);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment