[svn-commits] fjoe: freebsd/trunk r9244 - /freebsd/trunk/drivers/dahdi/wctdm.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Sep 1 10:20:35 CDT 2010


Author: fjoe
Date: Wed Sep  1 10:20:31 2010
New Revision: 9244

URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9244
Log:
Define module parameters for wctdm properly.

Modified:
    freebsd/trunk/drivers/dahdi/wctdm.c

Modified: freebsd/trunk/drivers/dahdi/wctdm.c
URL: http://svnview.digium.com/svn/dahdi/freebsd/trunk/drivers/dahdi/wctdm.c?view=diff&rev=9244&r1=9243&r2=9244
==============================================================================
--- freebsd/trunk/drivers/dahdi/wctdm.c (original)
+++ freebsd/trunk/drivers/dahdi/wctdm.c Wed Sep  1 10:20:31 2010
@@ -3145,6 +3145,7 @@
 {
 	pci_unregister_driver(&wctdm_driver);
 }
+#endif /* !__FreeBSD__ */
 
 module_param(debug, int, 0600);
 module_param(fxovoltage, int, 0600);
@@ -3170,6 +3171,7 @@
 module_param(fxstxgain, int, 0600);
 module_param(fxsrxgain, int, 0600);
 
+#if !defined(__FreeBSD__)
 MODULE_DESCRIPTION("Wildcard TDM400P Driver");
 MODULE_AUTHOR("Mark Spencer <markster at digium.com>");
 MODULE_ALIAS("wcfxs");
@@ -3177,4 +3179,4 @@
 
 module_init(wctdm_init);
 module_exit(wctdm_cleanup);
-#endif /* !__FreeBSD__ */
+#endif




More information about the svn-commits mailing list