zftape_syms.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *      Copyright (C) 1997 Claus-Justus Heine
  3.  This program is free software; you can redistribute it and/or modify
  4.  it under the terms of the GNU General Public License as published by
  5.  the Free Software Foundation; either version 2, or (at your option)
  6.  any later version.
  7.  This program is distributed in the hope that it will be useful,
  8.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.  GNU General Public License for more details.
  11.  You should have received a copy of the GNU General Public License
  12.  along with this program; see the file COPYING.  If not, write to
  13.  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  *
  15.  * $Source: /homes/cvs/ftape-stacked/ftape/zftape/zftape_syms.c,v $
  16.  * $Revision: 1.3 $
  17.  * $Date: 1997/10/05 19:19:14 $
  18.  *
  19.  *      This file contains the symbols that the zftape frontend to 
  20.  *      the ftape floppy tape driver exports 
  21.  */  
  22. #define __NO_VERSION__
  23. #include <linux/module.h>
  24. #include <linux/zftape.h>
  25. #include "../zftape/zftape-init.h"
  26. #include "../zftape/zftape-read.h"
  27. #include "../zftape/zftape-buffers.h"
  28. #include "../zftape/zftape-ctl.h"
  29. #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,18)
  30. # define FT_KSYM(sym) EXPORT_SYMBOL(sym);
  31. #else
  32. # define FT_KSYM(sym) X(sym),
  33. #endif
  34. #if LINUX_VERSION_CODE < KERNEL_VER(2,1,18)
  35. struct symbol_table zft_symbol_table = {
  36. #include <linux/symtab_begin.h>
  37. #endif
  38. /* zftape-init.c */
  39. FT_KSYM(zft_cmpr_register)
  40. FT_KSYM(zft_cmpr_unregister)
  41. /* zftape-read.c */
  42. FT_KSYM(zft_fetch_segment_fraction)
  43. /* zftape-buffers.c */
  44. FT_KSYM(zft_vmalloc_once)
  45. FT_KSYM(zft_vmalloc_always)
  46. FT_KSYM(zft_vfree)
  47. #if LINUX_VERSION_CODE < KERNEL_VER(2,1,18)
  48. #include <linux/symtab_end.h>
  49. };
  50. #endif