linux/drivers/staging/dgnc/dgnc_kcompat.h
<<
>>
Prefs
   1/*
   2 * Copyright 2004 Digi International (www.digi.com)
   3 *      Scott H Kilau <Scott_Kilau at digi dot com>
   4 *
   5 * This program is free software; you can redistribute it and/or modify
   6 * it under the terms of the GNU General Public License as published by
   7 * the Free Software Foundation; either version 2, or (at your option)
   8 * any later version.
   9 *
  10 * This program is distributed in the hope that it will be useful,
  11 * but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the
  12 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  13 * PURPOSE.  See the GNU General Public License for more details.
  14 *
  15 * You should have received a copy of the GNU General Public License
  16 * along with this program; if not, write to the Free Software
  17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18 *
  19 *      NOTE: THIS IS A SHARED HEADER. DO NOT CHANGE CODING STYLE!!!
  20 *
  21 *************************************************************************
  22 *
  23 * This file is intended to contain all the kernel "differences" between the
  24 * various kernels that we support.
  25 *
  26 *************************************************************************/
  27
  28#ifndef __DGNC_KCOMPAT_H
  29#define __DGNC_KCOMPAT_H
  30
  31#include <linux/version.h>
  32
  33# ifndef KERNEL_VERSION
  34#  define KERNEL_VERSION(a,b,c)  (((a) << 16) + ((b) << 8) + (c))
  35# endif
  36
  37
  38#if !defined(TTY_FLIPBUF_SIZE)
  39# define TTY_FLIPBUF_SIZE 512
  40#endif
  41
  42
  43/* Sparse stuff */
  44# ifndef __user
  45#  define __user
  46#  define __kernel
  47#  define __safe
  48#  define __force
  49#  define __chk_user_ptr(x) (void)0
  50# endif
  51
  52
  53#  define PARM_STR(VAR, INIT, PERM, DESC) \
  54                static char *VAR = INIT; \
  55                char *dgnc_##VAR; \
  56                module_param(VAR, charp, PERM); \
  57                MODULE_PARM_DESC(VAR, DESC);
  58
  59#  define PARM_INT(VAR, INIT, PERM, DESC) \
  60                static int VAR = INIT; \
  61                int dgnc_##VAR; \
  62                module_param(VAR, int, PERM); \
  63                MODULE_PARM_DESC(VAR, DESC);
  64
  65#  define PARM_ULONG(VAR, INIT, PERM, DESC) \
  66                static ulong VAR = INIT; \
  67                ulong dgnc_##VAR; \
  68                module_param(VAR, long, PERM); \
  69                MODULE_PARM_DESC(VAR, DESC);
  70
  71
  72
  73
  74
  75#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)
  76
  77
  78
  79/* NOTHING YET */
  80
  81
  82
  83# else
  84
  85
  86
  87# error "this driver does not support anything below the 2.6.27 kernel series."
  88
  89
  90
  91# endif
  92
  93#endif /* ! __DGNC_KCOMPAT_H */
  94