Skip to content

Commit

Permalink
include/linux/kdev_t.h: old/new_valid_dev() can return bool
Browse files Browse the repository at this point in the history
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: Yaowei Bai <[email protected]>
Cc: Al Viro <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
baihuahua authored and torvalds committed Nov 9, 2015
1 parent 7bc4f1d commit 8b9758b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/linux/kdev_t.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down

0 comments on commit 8b9758b

Please sign in to comment.