Changeset 832cbe7 in mainline for uspace/drv/bus/pci/pciintel/pci.h
- Timestamp:
- 2025-02-05T12:30:20Z (7 days ago)
- Branches:
- master
- Children:
- accdf882
- Parents:
- 0dab4850
- git-author:
- Jiri Svoboda <jiri@…> (2025-02-04 21:30:06)
- git-committer:
- Jiri Svoboda <jiri@…> (2025-02-05 12:30:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/pci/pciintel/pci.h
r0dab4850 r832cbe7 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2010 Lenka Trochtova 3 * Copyright (c) 2011 Jiri Svoboda4 4 * All rights reserved. 5 5 * … … 41 41 #include <ddf/driver.h> 42 42 #include <fibril_synch.h> 43 #include <stdbool.h> 43 44 44 45 #define PCI_MAX_HW_RES 10 … … 54 55 /** List of functions (of pci_fun_t) */ 55 56 list_t funs; 57 /** Enumeration is done */ 58 bool enum_done; 59 /** Synchronize enum_done */ 60 fibril_mutex_t enum_done_lock; 61 /** Signal change to enum_done */ 62 fibril_condvar_t enum_done_cv; 63 /** @c true iff legacy IDE range is claimed by PCI IDE driver */ 64 bool leg_ide_claimed; 56 65 } pci_bus_t; 57 66 … … 72 81 uint8_t prog_if; 73 82 uint8_t revision; 83 bool querying; 74 84 hw_resource_list_t hw_resources; 75 85 hw_resource_t resources[PCI_MAX_HW_RES];
Note:
See TracChangeset
for help on using the changeset viewer.