mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-08-21 16:31:14 +02:00

Commit 1e4c64b71c
("mm/memblock: Add "reserve_mem" to reserved named
memory at boot up") introduce usage of isspace().
Let's include <linux/ctype.h> in kernel.h to fix this.
Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
Link: https://lore.kernel.org/r/20240806010319.29194-4-richard.weiyang@gmail.com
Signed-off-by: Mike Rapoport (Microsoft) <rppt@kernel.org>
15 lines
335 B
C
15 lines
335 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef _MEMBLOCK_LINUX_KERNEL_H
|
|
#define _MEMBLOCK_LINUX_KERNEL_H
|
|
|
|
#include <../../include/linux/kernel.h>
|
|
#include <linux/errno.h>
|
|
#include <string.h>
|
|
#include <linux/printk.h>
|
|
#include <linux/linkage.h>
|
|
#include <linux/kconfig.h>
|
|
#include <linux/string.h>
|
|
#include <linux/ctype.h>
|
|
|
|
#endif
|