Commit 8b9758b9 authored by Yaowei Bai's avatar Yaowei Bai Committed by Linus Torvalds

include/linux/kdev_t.h: old/new_valid_dev() can return bool

Make old/new_valid_dev return bool due to these two particular functions
only using either one or zero as their return value.

No functional change.
Signed-off-by: default avatarYaowei Bai <bywxiaobai@163.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7bc4f1d2
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
}) })
/* acceptable for old filesystems */ /* acceptable for old filesystems */
static inline int old_valid_dev(dev_t dev) static inline bool old_valid_dev(dev_t dev)
{ {
return MAJOR(dev) < 256 && MINOR(dev) < 256; return MAJOR(dev) < 256 && MINOR(dev) < 256;
} }
...@@ -35,7 +35,7 @@ static inline dev_t old_decode_dev(u16 val) ...@@ -35,7 +35,7 @@ static inline dev_t old_decode_dev(u16 val)
return MKDEV((val >> 8) & 255, val & 255); return MKDEV((val >> 8) & 255, val & 255);
} }
static inline int new_valid_dev(dev_t dev) static inline bool new_valid_dev(dev_t dev)
{ {
return 1; return 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment