Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1234151
| From | Yaowei Bai <bywxiaobai@163.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 02/17] fs/kdev_t: old/new_valid_dev can be boolean |
| Date | 2015-09-28 15:40 +0200 |
| Message-ID | <qdGOS-Rc-5@gated-at.bofh.it> (permalink) |
| References | <qdGOS-Rc-7@gated-at.bofh.it> <qdGOS-Rc-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
This patch makes 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: Yaowei Bai <bywxiaobai@163.com>
---
include/linux/kdev_t.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/kdev_t.h b/include/linux/kdev_t.h
index a546d20..052c7b3 100644
--- a/include/linux/kdev_t.h
+++ b/include/linux/kdev_t.h
@@ -20,7 +20,7 @@
})
/* 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;
}
@@ -35,7 +35,7 @@ static inline dev_t old_decode_dev(u16 val)
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;
}
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 02/17] fs/kdev_t: old/new_valid_dev can be boolean Yaowei Bai <bywxiaobai@163.com> - 2015-09-28 15:40 +0200
csiph-web