Blame view

include/linux/if_phonet.h 406 Bytes
bce7b1542   Remi Denis-Courmont   Phonet: global de...
1
2
3
4
5
6
7
  /*
   * File: if_phonet.h
   *
   * Phonet interface kernel definitions
   *
   * Copyright (C) 2008 Nokia Corporation. All rights reserved.
   */
6e50e8a21   Remi Denis-Courmont   phonet: Protect i...
8
9
  #ifndef LINUX_IF_PHONET_H
  #define LINUX_IF_PHONET_H
bce7b1542   Remi Denis-Courmont   Phonet: global de...
10

6e50e8a21   Remi Denis-Courmont   phonet: Protect i...
11
12
  #define PHONET_MIN_MTU		6	/* pn_length = 0 */
  #define PHONET_MAX_MTU		65541	/* pn_length = 0xffff */
bce7b1542   Remi Denis-Courmont   Phonet: global de...
13
  #define PHONET_DEV_MTU		PHONET_MAX_MTU
5f77076d7   Remi Denis-Courmont   Phonet: provide M...
14
15
16
17
  
  #ifdef __KERNEL__
  extern struct header_ops phonet_header_ops;
  #endif
6e50e8a21   Remi Denis-Courmont   phonet: Protect i...
18
19
  
  #endif