diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-24 10:47:56 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:54:57 -0500 |
commit | fbd48a69a0b576dd8cba01b2b4fc24fad76f1b68 (patch) | |
tree | 66b1dd2d4093f7b6156296be0f09bea535c6053e /drivers | |
parent | f4ae40a6a50a98ac23d4b285f739455e926a473e (diff) |
switch devtmpfs to umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/base/devtmpfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/base/devtmpfs.c b/drivers/base/devtmpfs.c index 3990f682e690..393f450cf43c 100644 --- a/drivers/base/devtmpfs.c +++ b/drivers/base/devtmpfs.c | |||
@@ -142,7 +142,7 @@ int devtmpfs_delete_node(struct device *dev) | |||
142 | return req.err; | 142 | return req.err; |
143 | } | 143 | } |
144 | 144 | ||
145 | static int dev_mkdir(const char *name, mode_t mode) | 145 | static int dev_mkdir(const char *name, umode_t mode) |
146 | { | 146 | { |
147 | struct dentry *dentry; | 147 | struct dentry *dentry; |
148 | struct path path; | 148 | struct path path; |
@@ -189,7 +189,7 @@ static int create_path(const char *nodepath) | |||
189 | return err; | 189 | return err; |
190 | } | 190 | } |
191 | 191 | ||
192 | static int handle_create(const char *nodename, mode_t mode, struct device *dev) | 192 | static int handle_create(const char *nodename, umode_t mode, struct device *dev) |
193 | { | 193 | { |
194 | struct dentry *dentry; | 194 | struct dentry *dentry; |
195 | struct path path; | 195 | struct path path; |
@@ -378,7 +378,7 @@ int devtmpfs_mount(const char *mntdir) | |||
378 | 378 | ||
379 | static DECLARE_COMPLETION(setup_done); | 379 | static DECLARE_COMPLETION(setup_done); |
380 | 380 | ||
381 | static int handle(const char *name, mode_t mode, struct device *dev) | 381 | static int handle(const char *name, umode_t mode, struct device *dev) |
382 | { | 382 | { |
383 | if (mode) | 383 | if (mode) |
384 | return handle_create(name, mode, dev); | 384 | return handle_create(name, mode, dev); |