blob: 28aa0237c8c36ee669c52c5e0135c709aa24616e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ppp_defs.h - PPP definitions.
3 *
Paul Mackerras784db3f2012-03-04 12:54:54 +00004 * Copyright 1994-2000 Paul Mackerras.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Paul Mackerras784db3f2012-03-04 12:54:54 +00006 * 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 Torvalds1da177e2005-04-16 15:20:36 -07009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#ifndef _PPP_DEFS_H_
11#define _PPP_DEFS_H_
12
David Woodhouse2c88f4a2006-05-04 12:07:37 +010013#include <linux/crc-ccitt.h>
David Howells607ca462012-10-13 10:46:48 +010014#include <uapi/linux/ppp_defs.h>
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#endif /* _PPP_DEFS_H_ */