Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:43

0001 /*
0002  * ide_ctrl.h
0003  *
0004  * This file describes the IDE controller driver for all boards.
0005  *
0006  * Copyright (C) 2002 OKTET Ltd., St.-Petersburg, Russia
0007  * Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
0008  *
0009  * The license and distribution terms for this file may be
0010  * found in the file LICENSE in this distribution or at
0011  * http://www.rtems.org/license/LICENSE.
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 /* __IDE_CTRL_H__ */