From cde7417ce487988322d0bdaa02b4165082fbe388 Mon Sep 17 00:00:00 2001 From: Kari Argillander Date: Tue, 31 Aug 2021 00:51:52 +0300 Subject: btrfs: use correct header for div_u64 in misc.h asm/do_div.h is for div_u64, but it is found in math64.h. This change will make compiler job easier and prevent compiler errors in situation where compiler will not find math64.h from another paths. Signed-off-by: Kari Argillander Reviewed-by: David Sterba Signed-off-by: David Sterba --- fs/btrfs/misc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fs/btrfs/misc.h') diff --git a/fs/btrfs/misc.h b/fs/btrfs/misc.h index 6461ebc3a1c1..340f995652f2 100644 --- a/fs/btrfs/misc.h +++ b/fs/btrfs/misc.h @@ -5,7 +5,7 @@ #include #include -#include +#include #include #define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len)) -- cgit v1.2.3-73-gaa49b