Changeset 443695e in mainline for uspace/lib/c/include/device/hw_res.h
- Timestamp:
- 2024-05-21T11:33:56Z (12 months ago)
- Branches:
- master
- Children:
- 3526f4f3
- Parents:
- 1801005
- git-author:
- Jiri Svoboda <jiri@…> (2024-05-20 17:33:43)
- git-committer:
- Jiri Svoboda <jiri@…> (2024-05-21 11:33:56)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/device/hw_res.h
r1801005 r443695e 1 1 /* 2 * Copyright (c) 2024 Jiri Svoboda 2 3 * Copyright (c) 2010 Lenka Trochtova 3 4 * All rights reserved. … … 56 57 HW_RES_DMA_CHANNEL_SETUP, 57 58 HW_RES_DMA_CHANNEL_REMAIN, 59 HW_RES_GET_FLAGS 58 60 } hw_res_method_t; 59 61 … … 116 118 } 117 119 120 typedef enum { 121 /** This is an PCI/ISA bridge, not 'classic' ISA bus */ 122 hwf_isa_bridge = 0x1 123 } hw_res_flags_t; 124 118 125 extern errno_t hw_res_get_resource_list(async_sess_t *, hw_resource_list_t *); 119 126 extern errno_t hw_res_enable_interrupt(async_sess_t *, int); … … 124 131 uint32_t, uint8_t); 125 132 extern errno_t hw_res_dma_channel_remain(async_sess_t *, unsigned, size_t *); 133 extern errno_t hw_res_get_flags(async_sess_t *, hw_res_flags_t *); 126 134 127 135 #endif
Note:
See TracChangeset
for help on using the changeset viewer.