m25p80: Fast read commands family changes.
[qemu/ar7.git] / include / qemu / id.h
blob7d90335afb7f4acd649f1b79716723bad0358cbb
1 #ifndef QEMU_ID_H
2 #define QEMU_ID_H 1
4 typedef enum IdSubSystems {
5 ID_QDEV,
6 ID_BLOCK,
7 ID_MAX /* last element, used as array size */
8 } IdSubSystems;
10 char *id_generate(IdSubSystems id);
11 bool id_wellformed(const char *id);
13 #endif