Changeset ae3ff9f5 in mainline for uspace/srv/bd/sata_bd/sata_bd.c
- Timestamp:
- 2012-07-18T17:35:08Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7030bc9
- Parents:
- 730dce77
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/sata_bd/sata_bd.c
r730dce77 rae3ff9f5 51 51 #define NAMESPACE "bd" 52 52 53 #define MAXDISKS 256 54 55 static sata_dev_t disk[MAXDISKS]; 53 /** Maximum number of disks handled */ 54 #define MAXDISKS 256 55 56 static sata_bd_dev_t disk[MAXDISKS]; 56 57 static int disk_count; 57 58 59 /** Find SATA devices in device tree. 60 * 61 * @param Device manager handle describing container for searching. 62 * 63 * @return EOK if succeed, error code otherwise. 64 * 65 */ 58 66 static int scan_device_tree(devman_handle_t funh) 59 67 { … … 107 115 } 108 116 109 /** Find sata devices in device tree from root. */ 117 /** Find sata devices in device tree from root. 118 * 119 * @return EOK if succeed, error code otherwise. 120 * 121 */ 110 122 static int get_sata_disks() 111 123 {
Note:
See TracChangeset
for help on using the changeset viewer.