Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ppp_defs.h - PPP definitions. |
| 3 | * |
Paul Mackerras | 784db3f | 2012-03-04 12:54:54 +0000 | [diff] [blame] | 4 | * Copyright 1994-2000 Paul Mackerras. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
Paul Mackerras | 784db3f | 2012-03-04 12:54:54 +0000 | [diff] [blame] | 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * version 2 as published by the Free Software Foundation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #ifndef _PPP_DEFS_H_ |
| 11 | #define _PPP_DEFS_H_ |
| 12 | |
David Woodhouse | 2c88f4a | 2006-05-04 12:07:37 +0100 | [diff] [blame] | 13 | #include <linux/crc-ccitt.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 14 | #include <uapi/linux/ppp_defs.h> |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #endif /* _PPP_DEFS_H_ */ |