Changeset 59c0f478 in mainline for uspace/drv/block/isa-ide/main.h
- Timestamp:
- 2024-05-16T18:20:35Z (7 months ago)
- Branches:
- master
- Children:
- 646849b3
- Parents:
- 2791fbb7
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/block/isa-ide/main.h
r2791fbb7 r59c0f478 27 27 */ 28 28 29 /** @addtogroup ata_bd29 /** @addtogroup isa-ide 30 30 * @{ 31 31 */ 32 /** @file ATAdriver main module32 /** @file ISA IDE driver main module 33 33 */ 34 34 35 #ifndef __ATA_MAIN_H__36 #define __ATA_MAIN_H__35 #ifndef MAIN_H 36 #define MAIN_H 37 37 38 #include " ata_bd.h"38 #include "isa-ide.h" 39 39 40 extern errno_t ata_fun_create(ata_ctrl_t *, unsigned, void *);41 extern errno_t ata_fun_remove(ata_ctrl_t *, unsigned);42 extern errno_t ata_fun_unbind(ata_ctrl_t *, unsigned);40 extern errno_t isa_ide_fun_create(isa_ide_ctrl_t *, unsigned, void *); 41 extern errno_t isa_ide_fun_remove(isa_ide_ctrl_t *, unsigned); 42 extern errno_t isa_ide_fun_unbind(isa_ide_ctrl_t *, unsigned); 43 43 44 44 #endif
Note:
See TracChangeset
for help on using the changeset viewer.