diff options
| author | Tony Lindgren <tony@atomide.com> | 2021-01-15 12:48:43 +0200 | 
|---|---|---|
| committer | Tony Lindgren <tony@atomide.com> | 2021-01-15 12:48:43 +0200 | 
| commit | 715a1284d89a740b197b3bad5eb20d36a397382f (patch) | |
| tree | 07ad2960ab66e56b3d1e151036262019a18e3df1 /lib/math/div64.c | |
| parent | 181739822cf6f8f4e12b173913af2967a28906c0 (diff) | |
| parent | 06862d789ddde8a99c1e579e934ca17c15a84755 (diff) | |
Merge branch 'cpuidle-fix' into fixes
Diffstat (limited to 'lib/math/div64.c')
| -rw-r--r-- | lib/math/div64.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/math/div64.c b/lib/math/div64.c index 3952a07130d8..064d68a5391a 100644 --- a/lib/math/div64.c +++ b/lib/math/div64.c @@ -18,9 +18,11 @@   * or by defining a preprocessor macro in arch/include/asm/div64.h.   */ +#include <linux/bitops.h>  #include <linux/export.h> -#include <linux/kernel.h> +#include <linux/math.h>  #include <linux/math64.h> +#include <linux/log2.h>  /* Not needed on 64bit architectures */  #if BITS_PER_LONG == 32  | 
