Blame view

include/linux/ppp_defs.h 305 Bytes
d2912cb15   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-only */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
  /*
   * ppp_defs.h - PPP definitions.
   *
784db3f06   Paul Mackerras   ppp: Change copyr...
5
   * Copyright 1994-2000 Paul Mackerras.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
  #ifndef _PPP_DEFS_H_
  #define _PPP_DEFS_H_
2c88f4a8b   David Woodhouse   Remove PPP_FCS fr...
9
  #include <linux/crc-ccitt.h>
607ca46e9   David Howells   UAPI: (Scripted) ...
10
  #include <uapi/linux/ppp_defs.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11

607ca46e9   David Howells   UAPI: (Scripted) ...
12
  #define PPP_FCS(fcs, c) crc_ccitt_byte(fcs, c)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
  #endif /* _PPP_DEFS_H_ */