diff options
author | greg@kroah.com <greg@kroah.com> | 2003-07-19 05:06:55 -0700 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:01:39 -0700 |
commit | 19dc5d4ce15ad387031ec4e78dc615a9eb07dc08 (patch) | |
tree | af26ff6a60e54904ce471844f7a9241d9dbbf67a /udev.h | |
parent | fa41b24051d9ac53cba45c0bb78623d4c0a5e5d6 (diff) |
[PATCH] Clean up the namedev interface a bit, making the code smaller...
Diffstat (limited to 'udev.h')
-rw-r--r-- | udev.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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; }; |