[dahdi-commits] fjoe: freebsd/trunk r8636 - /freebsd/trunk/drivers/dahdi/wcfxo.c

SVN commits to the DAHDI project dahdi-commits at lists.digium.com
Mon May 17 07:11:59 CDT 2010


Author: fjoe
Date: Mon May 17 07:11:56 2010
New Revision: 8636

URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=8636
Log:
Validate opermode on FreeBSD too.

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

Modified: freebsd/trunk/drivers/dahdi/wcfxo.c
URL: http://svnview.digium.com/svn/dahdi/freebsd/trunk/drivers/dahdi/wcfxo.c?view=diff&rev=8636&r1=8635&r2=8636
==============================================================================
--- freebsd/trunk/drivers/dahdi/wcfxo.c (original)
+++ freebsd/trunk/drivers/dahdi/wcfxo.c Mon May 17 07:11:56 2010
@@ -1125,6 +1125,21 @@
 }
 #endif /* !__FreeBSD__ */
 
+static int
+wcfxo_validate_params(void)
+{
+	int x;
+
+	if ((opermode >= sizeof(fxo_modes) / sizeof(fxo_modes[0])) || (opermode < 0)) {
+		printk(KERN_NOTICE "Invalid/unknown operating mode specified.  Please choose one of:\n");
+		for (x=0;x<sizeof(fxo_modes) / sizeof(fxo_modes[0]); x++)
+			printk(KERN_INFO "%d: %s\n", x, fxo_modes[x].name);
+		return -ENODEV;
+	}
+
+	return 0;
+}
+
 static struct pci_device_id wcfxo_pci_tbl[] = {
 	{ 0xe159, 0x0001, 0x8084, PCI_ANY_ID, 0, 0, (unsigned long) &generic },
 	{ 0xe159, 0x0001, 0x8085, PCI_ANY_ID, 0, 0, (unsigned long) &wcx101p },
@@ -1258,6 +1273,9 @@
 
 	id = dahdi_pci_device_id_lookup(dev, wcfxo_pci_tbl);
 	if (id == NULL)
+		return ENXIO;
+
+	if (wcfxo_validate_params())
 		return ENXIO;
 
 	/* found device */
@@ -1433,13 +1451,11 @@
 static int __init wcfxo_init(void)
 {
 	int res;
-	int x;
-	if ((opermode >= sizeof(fxo_modes) / sizeof(fxo_modes[0])) || (opermode < 0)) {
-		printk(KERN_NOTICE "Invalid/unknown operating mode specified.  Please choose one of:\n");
-		for (x=0;x<sizeof(fxo_modes) / sizeof(fxo_modes[0]); x++)
-			printk(KERN_INFO "%d: %s\n", x, fxo_modes[x].name);
+
+	res = wcfxo_validate_params();
+	if (res)
 		return -ENODEV;
-	}
+
 	res = dahdi_pci_module(&wcfxo_driver);
 	if (res)
 		return -ENODEV;




More information about the dahdi-commits mailing list