diff options
Diffstat (limited to 'drivers/isdn/capi/kcapi.c')
-rw-r--r-- | drivers/isdn/capi/kcapi.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/isdn/capi/kcapi.c b/drivers/isdn/capi/kcapi.c index 0b4c8a7396bc..ce9b05b9e93a 100644 --- a/drivers/isdn/capi/kcapi.c +++ b/drivers/isdn/capi/kcapi.c | |||
@@ -777,11 +777,8 @@ u16 capi20_put_message(struct capi20_appl *ap, struct sk_buff *skb) | |||
777 | * synchronizes this service with capi20_release. | 777 | * synchronizes this service with capi20_release. |
778 | */ | 778 | */ |
779 | ctr = get_capi_ctr_by_nr(CAPIMSG_CONTROLLER(skb->data)); | 779 | ctr = get_capi_ctr_by_nr(CAPIMSG_CONTROLLER(skb->data)); |
780 | if (!ctr || ctr->state != CAPI_CTR_RUNNING) { | 780 | if (!ctr || ctr->state != CAPI_CTR_RUNNING) |
781 | ctr = get_capi_ctr_by_nr(1); /* XXX why? */ | 781 | return CAPI_REGNOTINSTALLED; |
782 | if (!ctr || ctr->state != CAPI_CTR_RUNNING) | ||
783 | return CAPI_REGNOTINSTALLED; | ||
784 | } | ||
785 | if (ctr->blocked) | 782 | if (ctr->blocked) |
786 | return CAPI_SENDQUEUEFULL; | 783 | return CAPI_SENDQUEUEFULL; |
787 | 784 | ||