ftape_syms.c 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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/config.h>
  24. #include <linux/module.h>
  25. #include <linux/ftape.h>
  26. #include "../lowlevel/ftape-tracing.h"
  27. #include "../lowlevel/ftape-init.h"
  28. #include "../lowlevel/fdc-io.h"
  29. #include "../lowlevel/ftape-read.h"
  30. #include "../lowlevel/ftape-write.h"
  31. #include "../lowlevel/ftape-io.h"
  32. #include "../lowlevel/ftape-ctl.h"
  33. #include "../lowlevel/ftape-rw.h"
  34. #include "../lowlevel/ftape-bsm.h"
  35. #include "../lowlevel/ftape-buffer.h"
  36. #include "../lowlevel/ftape-format.h"
  37. /* bad sector handling from ftape-bsm.c */
  38. EXPORT_SYMBOL(ftape_get_bad_sector_entry);
  39. EXPORT_SYMBOL(ftape_find_end_of_bsm_list);
  40. /* from ftape-rw.c */
  41. EXPORT_SYMBOL(ftape_set_state);
  42. /* from ftape-ctl.c */
  43. EXPORT_SYMBOL(ftape_seek_to_bot);
  44. EXPORT_SYMBOL(ftape_seek_to_eot);
  45. EXPORT_SYMBOL(ftape_abort_operation);
  46. EXPORT_SYMBOL(ftape_get_status);
  47. EXPORT_SYMBOL(ftape_enable);
  48. EXPORT_SYMBOL(ftape_disable);
  49. EXPORT_SYMBOL(ftape_mmap);
  50. EXPORT_SYMBOL(ftape_calibrate_data_rate);
  51. /* from ftape-io.c */
  52. EXPORT_SYMBOL(ftape_reset_drive);
  53. EXPORT_SYMBOL(ftape_command);
  54. EXPORT_SYMBOL(ftape_parameter);
  55. EXPORT_SYMBOL(ftape_ready_wait);
  56. EXPORT_SYMBOL(ftape_report_operation);
  57. EXPORT_SYMBOL(ftape_report_error);
  58. /* from ftape-read.c */
  59. EXPORT_SYMBOL(ftape_read_segment_fraction);
  60. EXPORT_SYMBOL(ftape_zap_read_buffers);
  61. EXPORT_SYMBOL(ftape_read_header_segment);
  62. EXPORT_SYMBOL(ftape_decode_header_segment);
  63. /* from ftape-write.c */
  64. EXPORT_SYMBOL(ftape_write_segment);
  65. EXPORT_SYMBOL(ftape_start_writing);
  66. EXPORT_SYMBOL(ftape_loop_until_writes_done);
  67. /* from ftape-buffer.h */
  68. EXPORT_SYMBOL(ftape_set_nr_buffers);
  69. /* from ftape-format.h */
  70. EXPORT_SYMBOL(ftape_format_track);
  71. EXPORT_SYMBOL(ftape_format_status);
  72. EXPORT_SYMBOL(ftape_verify_segment);
  73. /* from tracing.c */
  74. #ifndef CONFIG_FT_NO_TRACE_AT_ALL
  75. EXPORT_SYMBOL(ftape_tracing);
  76. EXPORT_SYMBOL(ftape_function_nest_level);
  77. EXPORT_SYMBOL(ftape_trace_call);
  78. EXPORT_SYMBOL(ftape_trace_exit);
  79. EXPORT_SYMBOL(ftape_trace_log);
  80. #endif