rt/cif-rtai-io.h
branchkernel2.6
changeset 32 7d9809fbf7b9
parent 31 2b3e06f48ffe
child 33 f4171b8aadf8
--- a/rt/cif-rtai-io.h	Fri Dec 16 09:23:56 2005 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,43 +0,0 @@
-unsigned long cif_open_card(
-		unsigned int board_no,
-		unsigned int in_size,
-		unsigned int out_size,
-		void (*callback)(unsigned long priv_data),
-		unsigned long priv_data
-		);
-
-void cif_close_card(
-		unsigned long fd
-		);
-
-int cif_reset_card(
-		unsigned long fd,
-		unsigned int timeout,
-		unsigned int context	// 1 = interrupt context
-		);
-
-void cif_set_host_state(
-		unsigned long fd,
-		unsigned int state
-		);
-
-int cif_exchange_io(
-		unsigned long fd,
-		void *recv_data,
-		void *send_data
-		);
-
-int cif_read_io(
-		unsigned long fd,
-		void *recv_data
-		);
-
-int cif_write_io(
-		unsigned long fd,
-		void *send_data
-		);
-
-int cif_card_ready(
-		unsigned long fd
-		);
-