···23062306 .remove = __devexit_p(xgifb_remove)23072307};2308230823092309+23102310+23112311+/*****************************************************/23122312+/* MODULE */23132313+/*****************************************************/23142314+23152315+module_param(mode, charp, 0);23162316+MODULE_PARM_DESC(mode,23172317+ "\nSelects the desired default display mode in the format XxYxDepth,\n"23182318+ "eg. 1024x768x16.\n");23192319+23202320+module_param(forcecrt2type, charp, 0);23212321+MODULE_PARM_DESC(forcecrt2type,23222322+ "\nForce the second display output type. Possible values are NONE,\n"23232323+ "LCD, TV, VGA, SVIDEO or COMPOSITE.\n");23242324+23252325+module_param(vesa, int, 0);23262326+MODULE_PARM_DESC(vesa,23272327+ "\nSelects the desired default display mode by VESA mode number, eg.\n"23282328+ "0x117.\n");23292329+23302330+module_param(filter, int, 0);23312331+MODULE_PARM_DESC(filter,23322332+ "\nSelects TV flicker filter type (only for systems with a SiS301 video bridge).\n"23332333+ "(Possible values 0-7, default: [no filter])\n");23342334+23092335static int __init xgifb_init(void)23102336{23112337 char *option = NULL;···23452319 return pci_register_driver(&xgifb_driver);23462320}2347232123482348-module_init(xgifb_init);23492349-23502350-/*****************************************************/23512351-/* MODULE */23522352-/*****************************************************/23532353-23542354-MODULE_DESCRIPTION("Z7 Z9 Z9S Z11 framebuffer device driver");23552355-MODULE_LICENSE("GPL");23562356-MODULE_AUTHOR("XGITECH , Others");23572357-23582358-module_param(mode, charp, 0);23592359-module_param(vesa, int, 0);23602360-module_param(filter, int, 0);23612361-module_param(forcecrt2type, charp, 0);23622362-23632363-MODULE_PARM_DESC(forcecrt2type,23642364- "\nForce the second display output type. Possible values are NONE,\n"23652365- "LCD, TV, VGA, SVIDEO or COMPOSITE.\n");23662366-23672367-MODULE_PARM_DESC(mode,23682368- "\nSelects the desired default display mode in the format XxYxDepth,\n"23692369- "eg. 1024x768x16.\n");23702370-23712371-MODULE_PARM_DESC(vesa,23722372- "\nSelects the desired default display mode by VESA mode number, eg.\n"23732373- "0x117.\n");23742374-23752375-MODULE_PARM_DESC(filter,23762376- "\nSelects TV flicker filter type (only for systems with a SiS301 video bridge).\n"23772377- "(Possible values 0-7, default: [no filter])\n");23782378-23792322static void __exit xgifb_remove_module(void)23802323{23812324 pci_unregister_driver(&xgifb_driver);23822325 pr_debug("Module unloaded\n");23832326}2384232723282328+MODULE_DESCRIPTION("Z7 Z9 Z9S Z11 framebuffer device driver");23292329+MODULE_LICENSE("GPL");23302330+MODULE_AUTHOR("XGITECH , Others");23312331+module_init(xgifb_init);23852332module_exit(xgifb_remove_module);