RTEMS 7.0-rc1
Loading...
Searching...
No Matches
ide_ctrl.h
1/* SPDX-License-Identifier: GPL-2.0+-with-RTEMS-exception */
2
3/*
4 * ide_ctrl.h
5 *
6 * This file describes the IDE controller driver for all boards.
7 *
8 * Copyright (C) 2002 OKTET Ltd., St.-Petersburg, Russia
9 * Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
10 *
11 * The license and distribution terms for this file may be
12 * found in the file LICENSE in this distribution or at
13 * http://www.rtems.org/license/LICENSE.
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(
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__ */
uint32_t rtems_device_major_number
This integer type represents the major number of devices.
Definition: io.h:103
uint32_t rtems_device_minor_number
This integer type represents the minor number of devices.
Definition: io.h:115
rtems_status_code
This enumeration provides status codes for directives of the Classic API.
Definition: status.h:85