[svn-commits] mattf: branch 1.4 r3264 - in /branches/1.4: ./ wct4xxp/vpm450m.c zconfig.h

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Nov 30 14:19:41 CST 2007


Author: mattf
Date: Fri Nov 30 14:19:40 2007
New Revision: 3264

URL: http://svn.digium.com/view/zaptel?view=rev&rev=3264
Log:
Merged revisions 3263 via svnmerge from 
https://origsvn.digium.com/svn/zaptel/branches/1.2

........
r3263 | mattf | 2007-11-30 14:17:42 -0600 (Fri, 30 Nov 2007) | 1 line

Make sure we only disable irqs during octasic firmware load only if we have 4K stacks
........

Modified:
    branches/1.4/   (props changed)
    branches/1.4/wct4xxp/vpm450m.c
    branches/1.4/zconfig.h

Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.

Modified: branches/1.4/wct4xxp/vpm450m.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/wct4xxp/vpm450m.c?view=diff&rev=3264&r1=3263&r2=3264
==============================================================================
--- branches/1.4/wct4xxp/vpm450m.c (original)
+++ branches/1.4/wct4xxp/vpm450m.c Fri Nov 30 14:19:40 2007
@@ -10,9 +10,16 @@
 #include <linux/vmalloc.h>
 #include <linux/string.h>
 #include <linux/time.h>
+#include <linux/version.h>
 
 #include "vpm450m.h"
 #include "oct6100api/oct6100_api.h"
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
+#include <linux/config.h>
+#else
+#include <linux/autoconf.h>
+#endif
 
 /* API for Octasic access */
 UINT32 Oct6100UserGetTime(tPOCT6100_GET_TIME f_pTime)
@@ -407,7 +414,9 @@
 	UINT32 ulResult;
 	struct vpm450m *vpm450m;
 	int x,y,law;
+#ifdef CONFIG_4KSTACKS
 	unsigned long flags;
+#endif
 	
 	if (!(vpm450m = kmalloc(sizeof(struct vpm450m), GFP_KERNEL)))
 		return NULL;
@@ -482,11 +491,15 @@
 	 * stack unfriendly.  Stupid, stupid, stupid.  So we disable IRQs so we
 	 * don't run the risk of overflowing the stack while we initialize the
 	 * octasic. */
+#ifdef CONFIG_4KSTACKS
 	local_irq_save(flags);
+#endif
 	ulResult = Oct6100ChipOpen(vpm450m->pApiInstance, ChipOpen);
 	if (ulResult != cOCT6100_ERR_OK) {
 		printk("Failed to open chip, code %08x!\n", ulResult);
+#ifdef CONFIG_4KSTACKS
 		local_irq_restore(flags);
+#endif
 		kfree(vpm450m);
 		kfree(ChipOpen);
 		kfree(ChannelOpen);
@@ -541,7 +554,9 @@
 		}
 	}
 
+#ifdef CONFIG_4KSTACKS
 	local_irq_restore(flags);
+#endif
 	kfree(ChipOpen);
 	kfree(ChannelOpen);
 	return vpm450m;

Modified: branches/1.4/zconfig.h
URL: http://svn.digium.com/view/zaptel/branches/1.4/zconfig.h?view=diff&rev=3264&r1=3263&r2=3264
==============================================================================
--- branches/1.4/zconfig.h (original)
+++ branches/1.4/zconfig.h Fri Nov 30 14:19:40 2007
@@ -9,6 +9,8 @@
 #include <linux/version.h>
 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
 #include <linux/config.h>
+#else
+#include <linux/autoconf.h>
 #endif
 #endif
 




More information about the svn-commits mailing list