[PATCHv3 1/7] arm64: Treat handle_arch_irq as a function pointer
Catalin Marinas
catalin.marinas at arm.com
Thu Aug 28 10:02:01 PDT 2014
On Thu, Aug 21, 2014 at 02:20:33AM +0100, Laura Abbott wrote:
> --- a/arch/arm64/kernel/entry.S
> +++ b/arch/arm64/kernel/entry.S
> @@ -168,7 +168,8 @@ tsk .req x28 // current thread_info
> * Interrupt handling.
> */
> .macro irq_handler
> - ldr x1, handle_arch_irq
> + adrp x1, handle_arch_irq
> + ldr x1, [x1, #:lo12:handle_arch_irq]
Nitpick: please keep the tabs between instructions and registers, it
looks nicer with the rest of the code.
--
Catalin
More information about the linux-arm-kernel
mailing list