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
296 | (hc->pri ? 0x20 : 0x00) /* type */ in l1oip_socket_send()
473 if (((*buf) & 0x20) && !hc->pri) { in l1oip_socket_parse()
478 if (!((*buf) & 0x20) && hc->pri) { in l1oip_socket_parse()
1012 ch = rq->adr.channel; /* BRI: 1=B1 2=B2 PRI: 1..15,17.. */ in open_bchannel()
1046 if (hc->pri) { in l1oip_dctrl()
1054 if (!hc->pri) { in l1oip_dctrl()
1285 init_card(struct l1oip *hc, int pri, int bundle) in init_card() argument
1294 hc->pri = pri; in init_card()
1295 hc->d_idx = pri ? 16 : 3; in init_card()
1296 hc->b_num = pri ? 30 : 2; in init_card()
1298 if (hc->pri) in init_card()
1337 if (!pri && hc->b_num > 2) { in init_card()
1342 if (pri && hc->b_num > 126) { in init_card()
1343 printk(KERN_ERR "Maximum limit for PRI interface is 126 " in init_card()
1347 if (pri && hc->b_num > 30) { in init_card()
1377 if (pri) in init_card()
1436 int pri, bundle; in l1oip_init() local
1450 pri = 0; in l1oip_init()
1454 pri = 1; in l1oip_init()
1458 pri = 0; in l1oip_init()
1462 pri = 1; in l1oip_init()
1474 __func__, l1oip_cnt, pri ? "PRI" : "BRI", in l1oip_init()
1490 ret = init_card(hc, pri, bundle); in l1oip_init()