diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-03-12 21:41:57 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:53:17 -0700 |
commit | e6764498e7592f216a1895eacc485448fa4a1660 (patch) | |
tree | 11c81e7174f0bcb5774568f569985589584fbc19 /udev.h | |
parent | 319112e295bbf1ed5d86389190abbe24ce251b14 (diff) |
[PATCH] correct enum device_type
Diffstat (limited to 'udev.h')
-rw-r--r-- | udev.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -48,24 +48,24 @@ #define DEFAULT_PARTITIONS_COUNT 15 enum device_type { - UNKNOWN, - CLASS, - BLOCK, - NET, - PHYSDEV, + DEV_UNKNOWN, + DEV_CLASS, + DEV_BLOCK, + DEV_NET, + DEV_DEVICE, }; struct udevice { char devpath[PATH_SIZE]; char subsystem[NAME_SIZE]; + enum device_type type; char name[PATH_SIZE]; char devname[PATH_SIZE]; struct list_head symlink_list; char owner[USER_SIZE]; char group[USER_SIZE]; mode_t mode; - char type; dev_t devt; char tmp_node[PATH_SIZE]; |