summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsruffell <sruffell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2008-06-05 16:39:09 +0000
committersruffell <sruffell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2008-06-05 16:39:09 +0000
commit6459cabd68f4d02d7f915fe404d135708ba14ac7 (patch)
tree881b7c2633838c593a574bb235cccf706ea2edf6
parentc142fc8615d91519234bdc06408310df47196448 (diff)
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 git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@4345 5390a7c7-147a-4af0-8ec9-7488f05a26cb
-rw-r--r--kernel/wcte12xp/base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/wcte12xp/base.c b/kernel/wcte12xp/base.c
index b08d4ac..4629517 100644
--- a/kernel/wcte12xp/base.c
+++ b/kernel/wcte12xp/base.c
@@ -1061,7 +1061,7 @@ static int t1xxp_echocan_with_params(struct zt_chan *chan, struct zt_echocanpara
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;