diff options
| -rw-r--r-- | include/linux/atm.h | 7 | ||||
| -rw-r--r-- | include/linux/atm_tcp.h | 12 | 
2 files changed, 7 insertions, 12 deletions
diff --git a/include/linux/atm.h b/include/linux/atm.h index 60136684e0a..c791ddd9693 100644 --- a/include/linux/atm.h +++ b/include/linux/atm.h @@ -16,14 +16,11 @@   * documentation. Do not change them.   */ -#ifdef __KERNEL__ -#include <linux/socket.h> -#include <linux/types.h> -#endif  #include <linux/compiler.h>  #include <linux/atmapi.h>  #include <linux/atmsap.h>  #include <linux/atmioc.h> +#include <linux/types.h>  /* general ATM constants */ @@ -212,7 +209,7 @@ struct sockaddr_atmsvc {          char		pub[ATM_E164_LEN+1]; /* public address (E.164) */      					/* unused addresses must be bzero'ed */  	char		lij_type;	/* role in LIJ call; one of ATM_LIJ* */ -	uint32_t	lij_id;		/* LIJ call identifier */ +	__u32	lij_id;		/* LIJ call identifier */      } sas_addr __ATM_API_ALIGN;		/* SVC address */  }; diff --git a/include/linux/atm_tcp.h b/include/linux/atm_tcp.h index 18787f9b2f1..375638f8554 100644 --- a/include/linux/atm_tcp.h +++ b/include/linux/atm_tcp.h @@ -8,11 +8,9 @@  #define LINUX_ATM_TCP_H  #include <linux/atmapi.h> - -#ifdef __KERNEL__ -#include <linux/types.h> -#endif +#include <linux/atm.h>  #include <linux/atmioc.h> +#include <linux/types.h>  /* @@ -20,9 +18,9 @@   */  struct atmtcp_hdr { -	uint16_t	vpi; -	uint16_t	vci; -	uint32_t	length;		/* ... of data part */ +	__u16	vpi; +	__u16	vci; +	__u32	length;		/* ... of data part */  };  /*  |