diff options
author | Karsten Keil <isdn@linux-pingi.de> | 2012-05-04 00:15:33 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-04 11:55:05 -0400 |
commit | c626c127279b265ab293348763e043864d58d42c (patch) | |
tree | 476fa67d42bff3a1a27d97818fa66d16bf501a88 /drivers/isdn/hardware/mISDN/speedfax.c | |
parent | 8423e6b212a19d5f02232855dec73196297b5ee9 (diff) |
mISDN: Make layer1 timer 3 value configurable
For certification test it is very useful to change the layer1
timer3 value on runtime.
Signed-off-by: Karsten Keil <kkeil@linux-pingi.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/hardware/mISDN/speedfax.c')
-rw-r--r-- | drivers/isdn/hardware/mISDN/speedfax.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/isdn/hardware/mISDN/speedfax.c b/drivers/isdn/hardware/mISDN/speedfax.c index 04689935148b..93f344d74e54 100644 --- a/drivers/isdn/hardware/mISDN/speedfax.c +++ b/drivers/isdn/hardware/mISDN/speedfax.c | |||
@@ -224,7 +224,7 @@ channel_ctrl(struct sfax_hw *sf, struct mISDN_ctrl_req *cq) | |||
224 | 224 | ||
225 | switch (cq->op) { | 225 | switch (cq->op) { |
226 | case MISDN_CTRL_GETOP: | 226 | case MISDN_CTRL_GETOP: |
227 | cq->op = MISDN_CTRL_LOOP; | 227 | cq->op = MISDN_CTRL_LOOP | MISDN_CTRL_L1_TIMER3; |
228 | break; | 228 | break; |
229 | case MISDN_CTRL_LOOP: | 229 | case MISDN_CTRL_LOOP: |
230 | /* cq->channel: 0 disable, 1 B1 loop 2 B2 loop, 3 both */ | 230 | /* cq->channel: 0 disable, 1 B1 loop 2 B2 loop, 3 both */ |
@@ -234,6 +234,9 @@ channel_ctrl(struct sfax_hw *sf, struct mISDN_ctrl_req *cq) | |||
234 | } | 234 | } |
235 | ret = sf->isac.ctrl(&sf->isac, HW_TESTLOOP, cq->channel); | 235 | ret = sf->isac.ctrl(&sf->isac, HW_TESTLOOP, cq->channel); |
236 | break; | 236 | break; |
237 | case MISDN_CTRL_L1_TIMER3: | ||
238 | ret = sf->isac.ctrl(&sf->isac, HW_TIMER3_VALUE, cq->p1); | ||
239 | break; | ||
237 | default: | 240 | default: |
238 | pr_info("%s: unknown Op %x\n", sf->name, cq->op); | 241 | pr_info("%s: unknown Op %x\n", sf->name, cq->op); |
239 | ret = -EINVAL; | 242 | ret = -EINVAL; |