[PATCH v1 1/1] delay.h: fix for removed kernel.h
Palmer Dabbelt
palmer at dabbelt.com
Thu Oct 28 21:28:58 PDT 2021
On Thu, 28 Oct 2021 11:23:03 PDT (-0700), linux at roeck-us.net wrote:
> On Thu, Oct 28, 2021 at 08:01:43PM +0300, Andy Shevchenko wrote:
>> To be folded to the commit 0d280a9fbbd9 ("include/linux/delay.h:
>> replace kernel.h with the necessary inclusions")
I can't find that in any of my trees, so I'm assuming this is targeted
at something else.
Acked-by: Palmer Dabbelt <palmer at dabbelt.com>
Thanks!
>>
>> Reported-by: Guenter Roeck <linux at roeck-us.net>
>> Signed-off-by: Andy Shevchenko <andriy.shevchenko at linux.intel.com>
>
> Tested-by: Guenter Roeck <linux at roeck-us.net>
> Reviewed-by: Guenter Roeck <linux at roeck-us.net>
>
>> ---
>> arch/riscv/lib/delay.c | 4 ++++
>> arch/s390/include/asm/facility.h | 4 ++++
>> 2 files changed, 8 insertions(+)
>>
>> diff --git a/arch/riscv/lib/delay.c b/arch/riscv/lib/delay.c
>> index f51c9a03bca1..49d510ba75fd 100644
>> --- a/arch/riscv/lib/delay.c
>> +++ b/arch/riscv/lib/delay.c
>> @@ -4,10 +4,14 @@
>> */
>>
>> #include <linux/delay.h>
>> +#include <linux/math.h>
>> #include <linux/param.h>
>> #include <linux/timex.h>
>> +#include <linux/types.h>
>> #include <linux/export.h>
>>
>> +#include <asm/processor.h>
>> +
>> /*
>> * This is copies from arch/arm/include/asm/delay.h
>> *
>> diff --git a/arch/s390/include/asm/facility.h b/arch/s390/include/asm/facility.h
>> index e3aa354ab9f4..94b6919026df 100644
>> --- a/arch/s390/include/asm/facility.h
>> +++ b/arch/s390/include/asm/facility.h
>> @@ -9,8 +9,12 @@
>> #define __ASM_FACILITY_H
>>
>> #include <asm/facility-defs.h>
>> +
>> +#include <linux/minmax.h>
>> #include <linux/string.h>
>> +#include <linux/types.h>
>> #include <linux/preempt.h>
>> +
>> #include <asm/lowcore.h>
>>
>> #define MAX_FACILITY_BIT (sizeof(stfle_fac_list) * 8)
>> --
>> 2.33.0
>>
More information about the linux-riscv
mailing list