Message ID | 20231017225915.45448-1-djkirsch326@gmail.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [4.4.y-cip] powerpc/prom: fix build | expand |
> On 10/18/2023 12:59 AM CEST Daniel Kirsch <djkirsch326@gmail.com> wrote: > > > A missing include generated a implicit function declaration error > when compiling for PowerPC. This patch fixes the build. > > Signed-off-by: Daniel Kirsch <djkirsch326@gmail.com> Thank you; queued for the next release. CU Uli
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c index d040662e4c16..cc03dab1eb64 100644 --- a/arch/powerpc/kernel/prom.c +++ b/arch/powerpc/kernel/prom.c @@ -34,6 +34,7 @@ #include <linux/of.h> #include <linux/of_fdt.h> #include <linux/libfdt.h> +#include <linux/jump_label.h> #include <asm/prom.h> #include <asm/rtas.h>
A missing include generated a implicit function declaration error when compiling for PowerPC. This patch fixes the build. Signed-off-by: Daniel Kirsch <djkirsch326@gmail.com> --- arch/powerpc/kernel/prom.c | 1 + 1 file changed, 1 insertion(+)