Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ed460925 authored by Rob Herring's avatar Rob Herring Committed by Russell King
Browse files

ARM: 8295/1: fix v7M build for !CONFIG_PRINTK



Minimal builds for v7M are broken when printk is disabled. The caller is
assembly so add the necessary ifdef around the call.

Signed-off-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent c2607f74
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -22,10 +22,12 @@

__invalid_entry:
	v7m_exception_entry
#ifdef CONFIG_PRINTK
	adr	r0, strerr
	mrs	r1, ipsr
	mov	r2, lr
	bl	printk
#endif
	mov	r0, sp
	bl	show_regs
1:	b	1b