Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.19 87 lines 2.9 kB view raw
1/* 2 * Copyright (C) 1996-1997 Claus-Justus Heine 3 4 This program is free software; you can redistribute it and/or modify 5 it under the terms of the GNU General Public License as published by 6 the Free Software Foundation; either version 2, or (at your option) 7 any later version. 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License for more details. 13 14 You should have received a copy of the GNU General Public License 15 along with this program; see the file COPYING. If not, write to 16 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 17 18 * 19 * $Source: /homes/cvs/ftape-stacked/ftape/lowlevel/ftape_syms.c,v $ 20 * $Revision: 1.4 $ 21 * $Date: 1997/10/17 00:03:51 $ 22 * 23 * This file contains the symbols that the ftape low level 24 * part of the QIC-40/80/3010/3020 floppy-tape driver "ftape" 25 * exports to its high level clients 26 */ 27 28#include <linux/module.h> 29 30#include <linux/ftape.h> 31#include "../lowlevel/ftape-tracing.h" 32#include "../lowlevel/ftape-init.h" 33#include "../lowlevel/fdc-io.h" 34#include "../lowlevel/ftape-read.h" 35#include "../lowlevel/ftape-write.h" 36#include "../lowlevel/ftape-io.h" 37#include "../lowlevel/ftape-ctl.h" 38#include "../lowlevel/ftape-rw.h" 39#include "../lowlevel/ftape-bsm.h" 40#include "../lowlevel/ftape-buffer.h" 41#include "../lowlevel/ftape-format.h" 42 43/* bad sector handling from ftape-bsm.c */ 44EXPORT_SYMBOL(ftape_get_bad_sector_entry); 45EXPORT_SYMBOL(ftape_find_end_of_bsm_list); 46/* from ftape-rw.c */ 47EXPORT_SYMBOL(ftape_set_state); 48/* from ftape-ctl.c */ 49EXPORT_SYMBOL(ftape_seek_to_bot); 50EXPORT_SYMBOL(ftape_seek_to_eot); 51EXPORT_SYMBOL(ftape_abort_operation); 52EXPORT_SYMBOL(ftape_get_status); 53EXPORT_SYMBOL(ftape_enable); 54EXPORT_SYMBOL(ftape_disable); 55EXPORT_SYMBOL(ftape_mmap); 56EXPORT_SYMBOL(ftape_calibrate_data_rate); 57/* from ftape-io.c */ 58EXPORT_SYMBOL(ftape_reset_drive); 59EXPORT_SYMBOL(ftape_command); 60EXPORT_SYMBOL(ftape_parameter); 61EXPORT_SYMBOL(ftape_ready_wait); 62EXPORT_SYMBOL(ftape_report_operation); 63EXPORT_SYMBOL(ftape_report_error); 64/* from ftape-read.c */ 65EXPORT_SYMBOL(ftape_read_segment_fraction); 66EXPORT_SYMBOL(ftape_zap_read_buffers); 67EXPORT_SYMBOL(ftape_read_header_segment); 68EXPORT_SYMBOL(ftape_decode_header_segment); 69/* from ftape-write.c */ 70EXPORT_SYMBOL(ftape_write_segment); 71EXPORT_SYMBOL(ftape_start_writing); 72EXPORT_SYMBOL(ftape_loop_until_writes_done); 73/* from ftape-buffer.h */ 74EXPORT_SYMBOL(ftape_set_nr_buffers); 75/* from ftape-format.h */ 76EXPORT_SYMBOL(ftape_format_track); 77EXPORT_SYMBOL(ftape_format_status); 78EXPORT_SYMBOL(ftape_verify_segment); 79/* from tracing.c */ 80#ifndef CONFIG_FT_NO_TRACE_AT_ALL 81EXPORT_SYMBOL(ftape_tracing); 82EXPORT_SYMBOL(ftape_function_nest_level); 83EXPORT_SYMBOL(ftape_trace_call); 84EXPORT_SYMBOL(ftape_trace_exit); 85EXPORT_SYMBOL(ftape_trace_log); 86#endif 87