Lines Matching full:pri
14 Value 2 = PRI
16 Value 4 = PRI (multi channel frame, not supported yet)
34 PRI: 1-30, 31-126 (126, because dchannel ist not counted here)
36 It is possible to have more channels than 30 in PRI mode, this must
297 | (hc->pri ? 0x20 : 0x00) /* type */ in l1oip_socket_send()
474 if (((*buf) & 0x20) && !hc->pri) { in l1oip_socket_parse()
479 if (!((*buf) & 0x20) && hc->pri) { in l1oip_socket_parse()
1015 ch = rq->adr.channel; /* BRI: 1=B1 2=B2 PRI: 1..15,17.. */ in open_bchannel()
1049 if (hc->pri) { in l1oip_dctrl()
1057 if (!hc->pri) { in l1oip_dctrl()
1287 init_card(struct l1oip *hc, int pri, int bundle) in init_card() argument
1296 hc->pri = pri; in init_card()
1297 hc->d_idx = pri ? 16 : 3; in init_card()
1298 hc->b_num = pri ? 30 : 2; in init_card()
1300 if (hc->pri) in init_card()
1339 if (!pri && hc->b_num > 2) { in init_card()
1344 if (pri && hc->b_num > 126) { in init_card()
1345 printk(KERN_ERR "Maximum limit for PRI interface is 126 " in init_card()
1349 if (pri && hc->b_num > 30) { in init_card()
1379 if (pri) in init_card()
1438 int pri, bundle; in l1oip_init() local
1452 pri = 0; in l1oip_init()
1456 pri = 1; in l1oip_init()
1460 pri = 0; in l1oip_init()
1464 pri = 1; in l1oip_init()
1476 __func__, l1oip_cnt, pri ? "PRI" : "BRI", in l1oip_init()
1492 ret = init_card(hc, pri, bundle); in l1oip_init()