summaryrefslogtreecommitdiff
path: root/udev.h
diff options
context:
space:
mode:
authorgreg@kroah.com <greg@kroah.com>2003-07-19 05:06:55 -0700
committerGreg KH <gregkh@suse.de>2005-04-26 21:01:39 -0700
commit19dc5d4ce15ad387031ec4e78dc615a9eb07dc08 (patch)
treeaf26ff6a60e54904ce471844f7a9241d9dbbf67a /udev.h
parentfa41b24051d9ac53cba45c0bb78623d4c0a5e5d6 (diff)
[PATCH] Clean up the namedev interface a bit, making the code smaller...
Diffstat (limited to 'udev.h')
-rw-r--r--udev.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/udev.h b/udev.h
index c82dbebded..56eb0d7edb 100644
--- a/udev.h
+++ b/udev.h
@@ -57,12 +57,10 @@ extern int log_message (int level, const char *format, ...)
#define GROUP_SIZE 30
struct device_attr {
- int major;
- int minor;
- int mode;
char name[NAME_SIZE];
char owner[OWNER_SIZE];
char group[GROUP_SIZE];
+ int mode;
};