summaryrefslogtreecommitdiffstats
path: root/c/src/libchip/ide/ide_ctrl_cfg.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2003-03-25 18:25:50 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2003-03-25 18:25:50 +0000
commit3446afa55592673fc49338975937d48c3f020c7d (patch)
tree04f40f4b411a539371c02dc22dc722d0b0371e79 /c/src/libchip/ide/ide_ctrl_cfg.h
parent2003-03-25 Thomas Doerfler <Thomas.Doerfler@imd-systems.de> (diff)
downloadrtems-3446afa55592673fc49338975937d48c3f020c7d.tar.bz2
2003-03-25 Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
PR 368/filesystems * ide/Makefile.am, ide/ide_ctrl_cfg.h: General improvements which now work on pc386 and mbx8xx. * ide/ide_controller.c: New file.
Diffstat (limited to '')
-rw-r--r--c/src/libchip/ide/ide_ctrl_cfg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/c/src/libchip/ide/ide_ctrl_cfg.h b/c/src/libchip/ide/ide_ctrl_cfg.h
index d24076bded..da895b4604 100644
--- a/c/src/libchip/ide/ide_ctrl_cfg.h
+++ b/c/src/libchip/ide/ide_ctrl_cfg.h
@@ -26,6 +26,7 @@ extern "C" {
* Avaible drivers for IDE controllers
*/
typedef enum {
+ IDE_STD,
IDE_CUSTOM /* BSP specific driver */
} ide_ctrl_devs_t;
@@ -70,7 +71,7 @@ typedef struct ide_controller_bsp_table_s {
char *name; /* device name */
ide_ctrl_devs_t type; /* chip type */
ide_ctrl_fns_t *fns; /* pointer to the set of driver routines */
- boolean (*probe)(int minor); /* probe routine */
+ boolean (*probe)(int minor); /* general probe routine */
unsigned8 status; /* initialized/non initialized. Should be set
* to zero by static initialization
*/