From 654d5d52495d7f555ca7c87427cc17cb772a99ba Mon Sep 17 00:00:00 2001 From: harti Date: Tue, 15 Jul 2003 10:26:34 +0000 Subject: ATM_PH_LLCSNAP and ATMIO_FLAG_LLCSNAP must have the same value, so define one in terms of the other. --- sys/net/if_atm.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/net') diff --git a/sys/net/if_atm.h b/sys/net/if_atm.h index 9712da8..9b7ad2c 100644 --- a/sys/net/if_atm.h +++ b/sys/net/if_atm.h @@ -209,8 +209,10 @@ struct atm_pseudohdr { (X)->atm_ph[3] = ((V) & 0xff); \ } -#define ATM_PH_AAL5 0x01 /* use AAL5? (0 == aal0) */ -#define ATM_PH_LLCSNAP 0x02 /* use the LLC SNAP encoding (iff aal5) */ +/* use AAL5? (0 == aal0) */ +#define ATM_PH_AAL5 0x01 +/* use the LLC SNAP encoding (iff aal5) */ +#define ATM_PH_LLCSNAP ATMIO_FLAG_LLCSNAP #define ATM_PH_DRIVER7 0x40 /* reserve for driver's use */ #define ATM_PH_DRIVER8 0x80 /* reserve for driver's use */ -- cgit v1.1