summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-08-19 02:31:56 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-08-19 02:31:56 +0000
commitddeedb16209503c0ae002036896e1c534ef552d6 (patch)
tree7a913a5fc09bcf056a7b20c6410315c032403c16
parent3d620570c259bb0b0a7b23606d81af8b073d6cd2 (diff)
Merged revisions 1327 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.2 ........ r1327 | kpfleming | 2006-08-18 21:27:49 -0500 (Fri, 18 Aug 2006) | 2 lines don't report the VPM servicing more spans than the card actually has ........ git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1328 5390a7c7-147a-4af0-8ec9-7488f05a26cb
-rw-r--r--wct4xxp_base.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wct4xxp_base.c b/wct4xxp_base.c
index 3d71e1e..f1a4e14 100644
--- a/wct4xxp_base.c
+++ b/wct4xxp_base.c
@@ -3149,7 +3149,7 @@ static void t4_vpm450_init(struct t4 *wc)
release_firmware(firmware);
#endif
wc->vpm = T4_VPM_PRESENT;
- printk("VPM450: Present and operational servicing %d span(s)\n", vpmspans);
+ printk("VPM450: Present and operational servicing %d span(s)\n", wc->numspans);
}
@@ -3285,7 +3285,7 @@ static void t4_vpm400_init(struct t4 *wc)
t4_vpm_out(wc, x, i, (x < 4) ? 0x55 : 0xAA);
}
- printk("VPM400%s: Present and operational servicing %d span(s)\n", (gen2vpm ? " (2nd Gen)" : ""), vpmspans);
+ printk("VPM400%s: Present and operational servicing %d span(s)\n", (gen2vpm ? " (2nd Gen)" : ""), wc->numspans);
wc->vpm = T4_VPM_PRESENT;
}