| 277 | } |
| 278 | |
| 279 | char *BusTypeString(STORAGE_BUS_TYPE BusType) |
| 280 | { |
| 281 | BUSTYPE_LIST *p = BusTypeList; |
| 282 | |
| 283 | while ( p->BusType != (STORAGE_BUS_TYPE)-1 ) { |
| 284 | if ( BusType == p->BusType ) { |
| 285 | return p->type; |
| 286 | } |
| 287 | p++; |
| 288 | } |
| 289 | |
| 290 | return p->type; |
| 291 | } |
| 292 | |
| 293 | /* Ext2Fsd supported codepages */ |
| 294 |
no outgoing calls
no test coverage detected