[zaptel-commits] sruffell: branch 1.4 r4345 - in /branches: 1.2/wcte12xp/ 1.4/kernel/wcte12xp/
SVN commits to the Zaptel project
zaptel-commits at lists.digium.com
Thu Jun 5 11:39:09 CDT 2008
Author: sruffell
Date: Thu Jun 5 11:39:09 2008
New Revision: 4345
URL: http://svn.digium.com/view/zaptel?view=rev&rev=4345
Log:
Fixed type of flags parameter to spin_lock_irqsave functions. Fixes
compilation issues on platforms where int and long do not have the same size.
Closes issue #12787
Modified:
branches/1.2/wcte12xp/base.c
branches/1.4/kernel/wcte12xp/base.c
Modified: branches/1.2/wcte12xp/base.c
URL: http://svn.digium.com/view/zaptel/branches/1.2/wcte12xp/base.c?view=diff&rev=4345&r1=4344&r2=4345
==============================================================================
--- branches/1.2/wcte12xp/base.c (original)
+++ branches/1.2/wcte12xp/base.c Thu Jun 5 11:39:09 2008
@@ -1059,7 +1059,7 @@
struct t1 *wc = chan->pvt;
if (wc->vpm150m) {
struct vpm150m *vpm150m = wc->vpm150m;
- unsigned int flags;
+ unsigned long flags;
/* add this to our list of work to do */
struct vpm150m_workentry *work;
Modified: branches/1.4/kernel/wcte12xp/base.c
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/wcte12xp/base.c?view=diff&rev=4345&r1=4344&r2=4345
==============================================================================
--- branches/1.4/kernel/wcte12xp/base.c (original)
+++ branches/1.4/kernel/wcte12xp/base.c Thu Jun 5 11:39:09 2008
@@ -1061,7 +1061,7 @@
struct adt_lec_params params;
struct t1 *wc = chan->pvt;
struct vpm150m *vpm150m = wc->vpm150m;
- unsigned int flags;
+ unsigned long flags;
struct vpm150m_workentry *work;
unsigned int ret;
More information about the zaptel-commits
mailing list