summaryrefslogtreecommitdiffstats
path: root/c/src/libchip/ide/ide_ctrl.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/libchip/ide/ide_ctrl.h')
-rw-r--r--c/src/libchip/ide/ide_ctrl.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/c/src/libchip/ide/ide_ctrl.h b/c/src/libchip/ide/ide_ctrl.h
new file mode 100644
index 0000000000..f6841d4fc9
--- /dev/null
+++ b/c/src/libchip/ide/ide_ctrl.h
@@ -0,0 +1,40 @@
+/*
+ * ide_ctrl.h
+ *
+ * This file describes the IDE controller driver for all boards.
+ *
+ * Copyright (C) 2002 OKTET Ltd., St.-Petersburg, Russia
+ * Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+#ifndef __IDE_CTRL_H__
+#define __IDE_CTRL_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+rtems_device_driver ide_controller_initialize(
+ rtems_device_major_number major,
+ rtems_device_minor_number minor,
+ void *args);
+
+
+#define IDE_CONTROLLER_DRIVER_TABLE_ENTRY \
+ {ide_controller_initialize, NULL, NULL, NULL, NULL, NULL}
+
+
+#ifdef __cplusplus
+}
+#endif
+
+
+#endif /* __IDE_CTRL_H__ */
+
+
+