Home
last modified time | relevance | path

Searched refs:DEV_TYP_STOR (Results 1 – 5 of 5) sorted by relevance

/external/u-boot/api/
Dapi_storage.c55 specs[ENUM_IDE].type = DEV_TYP_STOR | DT_STOR_IDE; in dev_stor_init()
62 specs[ENUM_MMC].type = DEV_TYP_STOR | DT_STOR_MMC; in dev_stor_init()
69 specs[ENUM_SATA].type = DEV_TYP_STOR | DT_STOR_SATA; in dev_stor_init()
76 specs[ENUM_SCSI].type = DEV_TYP_STOR | DT_STOR_SCSI; in dev_stor_init()
83 specs[ENUM_USB].type = DEV_TYP_STOR | DT_STOR_USB; in dev_stor_init()
Dapi.c246 if (di->type & DEV_TYP_STOR) in API_dev_open()
277 if (di->type & DEV_TYP_STOR) in API_dev_close()
342 if (di->type & DEV_TYP_STOR) in API_dev_write()
403 if (di->type & DEV_TYP_STOR) { in API_dev_read()
/external/u-boot/examples/api/
Ddemo.c105 if (di->type & DEV_TYP_STOR) in main()
308 } else if (di->type & DEV_TYP_STOR) { in test_dump_di()
Dglue.c266 if (!(devices[handle].type & DEV_TYP_STOR)) in dev_stor_valid()
/external/u-boot/include/
Dapi_public.h84 #define DEV_TYP_STOR 0x0002 macro