blob: 9d2b388fae1a40e0d781041ea8f0434ea9db5412 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * ppp_defs.h - PPP definitions.
4 *
Paul Mackerras784db3f2012-03-04 12:54:54 +00005 * Copyright 1994-2000 Paul Mackerras.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#ifndef _PPP_DEFS_H_
8#define _PPP_DEFS_H_
9
David Woodhouse2c88f4a2006-05-04 12:07:37 +010010#include <linux/crc-ccitt.h>
David Howells607ca462012-10-13 10:46:48 +010011#include <uapi/linux/ppp_defs.h>
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#endif /* _PPP_DEFS_H_ */