diff options
| author | Attilio Rao <attilio@FreeBSD.org> | 2009-09-15 16:59:52 +0000 |
|---|---|---|
| committer | Attilio Rao <attilio@FreeBSD.org> | 2009-09-15 16:59:52 +0000 |
| commit | 9a3ca99927518eaba88bb3b8a0ef11b37778fcfe (patch) | |
| tree | ca2dcb25542010766057b82d9cbe5bf12a500ba3 /lib | |
| parent | 435068aab79b3bef55ead3f64f9c20a619c02507 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libdevinfo/devinfo.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libdevinfo/devinfo.h b/lib/libdevinfo/devinfo.h index 91930a44008c..3e580f20d502 100644 --- a/lib/libdevinfo/devinfo.h +++ b/lib/libdevinfo/devinfo.h @@ -41,10 +41,10 @@ typedef __uintptr_t devinfo_handle_t; */ /* XXX not sure if I want a copy here, or expose sys/bus.h */ typedef enum devinfo_state { - DIS_NOTPRESENT, /* not probed or probe failed */ - DIS_ALIVE, /* probe succeeded */ - DIS_ATTACHED, /* attach method called */ - DIS_BUSY /* device is open */ + DIS_NOTPRESENT = 10, /* not probed or probe failed */ + DIS_ALIVE = 20, /* probe succeeded */ + DIS_ATTACHED = 30, /* attach method called */ + DIS_BUSY = 40 /* device is open */ } devinfo_state_t; struct devinfo_dev { |
