ftape_syms.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright (C) 1996-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/lowlevel/ftape_syms.c,v $
  16. * $Revision: 1.4 $
  17. * $Date: 1997/10/17 00:03:51 $
  18. *
  19. * This file contains the symbols that the ftape low level
  20. * part of the QIC-40/80/3010/3020 floppy-tape driver "ftape"
  21. * exports to its high level clients
  22. */
  23. #include <linux/module.h>
  24. #include <linux/ftape.h>
  25. #include "../lowlevel/ftape-tracing.h"
  26. #include "../lowlevel/ftape-init.h"
  27. #include "../lowlevel/fdc-io.h"
  28. #include "../lowlevel/ftape-read.h"
  29. #include "../lowlevel/ftape-write.h"
  30. #include "../lowlevel/ftape-io.h"
  31. #include "../lowlevel/ftape-ctl.h"
  32. #include "../lowlevel/ftape-rw.h"
  33. #include "../lowlevel/ftape-bsm.h"
  34. #include "../lowlevel/ftape-buffer.h"
  35. #include "../lowlevel/ftape-format.h"
  36. /* bad sector handling from ftape-bsm.c */
  37. EXPORT_SYMBOL(ftape_get_bad_sector_entry);
  38. EXPORT_SYMBOL(ftape_find_end_of_bsm_list);
  39. /* from ftape-rw.c */
  40. EXPORT_SYMBOL(ftape_set_state);
  41. /* from ftape-ctl.c */
  42. EXPORT_SYMBOL(ftape_seek_to_bot);
  43. EXPORT_SYMBOL(ftape_seek_to_eot);
  44. EXPORT_SYMBOL(ftape_abort_operation);
  45. EXPORT_SYMBOL(ftape_get_status);
  46. EXPORT_SYMBOL(ftape_enable);
  47. EXPORT_SYMBOL(ftape_disable);
  48. EXPORT_SYMBOL(ftape_mmap);
  49. EXPORT_SYMBOL(ftape_calibrate_data_rate);
  50. /* from ftape-io.c */
  51. EXPORT_SYMBOL(ftape_reset_drive);
  52. EXPORT_SYMBOL(ftape_command);
  53. EXPORT_SYMBOL(ftape_parameter);
  54. EXPORT_SYMBOL(ftape_ready_wait);
  55. EXPORT_SYMBOL(ftape_report_operation);
  56. EXPORT_SYMBOL(ftape_report_error);
  57. /* from ftape-read.c */
  58. EXPORT_SYMBOL(ftape_read_segment_fraction);
  59. EXPORT_SYMBOL(ftape_zap_read_buffers);
  60. EXPORT_SYMBOL(ftape_read_header_segment);
  61. EXPORT_SYMBOL(ftape_decode_header_segment);
  62. /* from ftape-write.c */
  63. EXPORT_SYMBOL(ftape_write_segment);
  64. EXPORT_SYMBOL(ftape_start_writing);
  65. EXPORT_SYMBOL(ftape_loop_until_writes_done);
  66. /* from ftape-buffer.h */
  67. EXPORT_SYMBOL(ftape_set_nr_buffers);
  68. /* from ftape-format.h */
  69. EXPORT_SYMBOL(ftape_format_track);
  70. EXPORT_SYMBOL(ftape_format_status);
  71. EXPORT_SYMBOL(ftape_verify_segment);
  72. /* from tracing.c */
  73. #ifndef CONFIG_FT_NO_TRACE_AT_ALL
  74. EXPORT_SYMBOL(ftape_tracing);
  75. EXPORT_SYMBOL(ftape_function_nest_level);
  76. EXPORT_SYMBOL(ftape_trace_call);
  77. EXPORT_SYMBOL(ftape_trace_exit);
  78. EXPORT_SYMBOL(ftape_trace_log);
  79. #endif