File indexing completed on 2025-05-11 08:23:43
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef __IDE_CTRL_H__
0014 #define __IDE_CTRL_H__
0015
0016 #ifdef __cplusplus
0017 extern "C" {
0018 #endif
0019
0020 rtems_device_driver ide_controller_initialize(
0021 rtems_device_major_number major,
0022 rtems_device_minor_number minor,
0023 void *args);
0024
0025
0026 #define IDE_CONTROLLER_DRIVER_TABLE_ENTRY \
0027 {ide_controller_initialize, NULL, NULL, NULL, NULL, NULL}
0028
0029
0030 #ifdef __cplusplus
0031 }
0032 #endif
0033
0034
0035 #endif