source: rtems/c/src/libchip/ide/ide_ctrl.h @ bd5efa92

4.104.114.84.95
Last change on this file since bd5efa92 was 11bbeb9, checked in by Joel Sherrill <joel.sherrill@…>, on 10/28/02 at 13:57:06

2002-10-28 Eugeny S. Mints <Eugeny.Mints@…>

  • New files: New directory ide/, ide/Makefile.am, ide/ide_ctrl_cfg.h, ide/ide_ctrl_io.h, ide/ide_ctrl.h:
  • configure.ac, Makefile.am: Modified to reflect changes above.
  • Property mode set to 100644
File size: 795 bytes
Line 
1/*
2 * ide_ctrl.h
3 *
4 * This file describes the IDE controller driver for all boards.
5 *
6 * Copyright (C) 2002 OKTET Ltd., St.-Petersburg, Russia
7 * Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
8 *
9 * The license and distribution terms for this file may be
10 * found in the file LICENSE in this distribution or at
11 * http://www.OARcorp.com/rtems/license.html.
12 *
13 * $Id$
14 */
15#ifndef __IDE_CTRL_H__
16#define __IDE_CTRL_H__
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22rtems_device_driver ide_controller_initialize(
23        rtems_device_major_number major,
24        rtems_device_minor_number minor,
25        void *args);
26       
27
28#define IDE_CONTROLLER_DRIVER_TABLE_ENTRY \
29    {ide_controller_initialize, NULL, NULL, NULL, NULL, NULL}
30   
31
32#ifdef __cplusplus
33}
34#endif
35
36
37#endif /* __IDE_CTRL_H__ */
38
39
40
Note: See TracBrowser for help on using the repository browser.