diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2017-04-04 00:28:13 -0800 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2017-04-04 06:43:08 -0800 |
commit | 978c16040525ffe1199bed6afd799eaa64d0f01c (patch) | |
tree | 789f68229be0af9579238a6d1e86af576ab33b3d /include/linux/blkdev.h | |
parent | 64c325ef483c863c720a7f53c6b3126e583e05a0 (diff) |
Fix some clang warnings
the issue in cmd_debug - passing members of struct bpos to kstrtoull,
which aren't aligned - was a legit bug
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r-- | include/linux/blkdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 1c793b51..eb157269 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -4,8 +4,8 @@ #include <linux/backing-dev.h> #include <linux/blk_types.h> #include <linux/kobject.h> +#include <linux/types.h> -typedef u64 sector_t; typedef unsigned fmode_t; struct bio; |