summaryrefslogtreecommitdiffstats
path: root/include/linux/if_pppvar.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1997-09-12 01:29:55 +0000
committerRalf Baechle <ralf@linux-mips.org>1997-09-12 01:29:55 +0000
commit545f435ebcfd94a1e7c20b46efe81b4d6ac4e698 (patch)
treee9ce4bc598d06374bda906f18365984bf22a526a /include/linux/if_pppvar.h
parent4291a610eef89d0d5c69d9a10ee6560e1aa36c74 (diff)
Merge with Linux 2.1.55. More bugfixes and goodies from my private
CVS archive.
Diffstat (limited to 'include/linux/if_pppvar.h')
-rw-r--r--include/linux/if_pppvar.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/if_pppvar.h b/include/linux/if_pppvar.h
index 2538d3408..720e5cdad 100644
--- a/include/linux/if_pppvar.h
+++ b/include/linux/if_pppvar.h
@@ -1,4 +1,4 @@
-/* $Id: if_pppvar.h,v 1.3 1996/09/01 07:45:23 davem Exp $ */
+/* $Id: if_pppvar.h,v 1.4 1997/09/03 11:55:06 ecd Exp $ */
/*
* if_pppvar.h - private structures and declarations for PPP.
*
@@ -72,7 +72,7 @@ struct ppp_buffer {
__s32 count; /* Count of characters in bufr */
__s32 head; /* index to head of list */
__s32 tail; /* index to tail of list */
- __u32 locked; /* Buffer is being sent */
+ unsigned long locked; /* Buffer is being sent */
__s32 type; /* Type of the buffer */
/* =0, device read buffer */
/* =1, device write buffer */
@@ -93,7 +93,7 @@ struct ppp {
__s32 magic; /* magic value for structure */
/* Bitmapped flag fields. */
- __u32 inuse; /* are we allocated? */
+ unsigned long inuse; /* are we allocated? */
__u8 escape; /* 0x20 if prev char was PPP_ESC*/
__u8 toss; /* toss this frame */