Commit 02282eee56b75a35e6bbc42cc34c9005eb1653f4

Authored by Martin Bachem
Committed by Karsten Keil
1 parent 9e6115f2f5

mISDN: Add ISDN_P_TE_UP0 / ISDN_P_NT_UP0

- new layer1 protocols for UP0 bus
- helper #defines to test for TE/NT/S0/E1/UP0

Signed-off-by: Martin Bachem <m.bachem@gmx.de>
Signed-off-by: Karsten Keil <kkeil@suse.de>

Showing 1 changed file with 12 additions and 0 deletions Side-by-side Diff

include/linux/mISDNif.h
... ... @@ -200,6 +200,18 @@
200 200 #define ISDN_P_NT_S0 0x02
201 201 #define ISDN_P_TE_E1 0x03
202 202 #define ISDN_P_NT_E1 0x04
  203 +#define ISDN_P_TE_UP0 0x05
  204 +#define ISDN_P_NT_UP0 0x06
  205 +
  206 +#define IS_ISDN_P_TE(p) ((p == ISDN_P_TE_S0) || (p == ISDN_P_TE_E1) || \
  207 + (p == ISDN_P_TE_UP0))
  208 +#define IS_ISDN_P_NT(p) ((p == ISDN_P_NT_S0) || (p == ISDN_P_NT_E1) || \
  209 + (p == ISDN_P_NT_UP0))
  210 +#define IS_ISDN_P_S0(p) ((p == ISDN_P_TE_S0) || (p == ISDN_P_NT_S0))
  211 +#define IS_ISDN_P_E1(p) ((p == ISDN_P_TE_E1) || (p == ISDN_P_NT_E1))
  212 +#define IS_ISDN_P_UP0(p) ((p == ISDN_P_TE_UP0) || (p == ISDN_P_NT_UP0))
  213 +
  214 +
203 215 #define ISDN_P_LAPD_TE 0x10
204 216 #define ISDN_P_LAPD_NT 0x11
205 217