Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * ppp_defs.h - PPP definitions. |
| 4 | * |
Paul Mackerras | 784db3f | 2012-03-04 12:54:54 +0000 | [diff] [blame] | 5 | * Copyright 1994-2000 Paul Mackerras. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #ifndef _PPP_DEFS_H_ |
| 8 | #define _PPP_DEFS_H_ |
| 9 | |
David Woodhouse | 2c88f4a | 2006-05-04 12:07:37 +0100 | [diff] [blame] | 10 | #include <linux/crc-ccitt.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 11 | #include <uapi/linux/ppp_defs.h> |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #endif /* _PPP_DEFS_H_ */ |