From 55ebd12262088ffa2f64b54756ba79b57ad3cc88 Mon Sep 17 00:00:00 2001 From: Sebastian Fricke Date: Wed, 13 May 2020 18:01:36 +0200 Subject: [PATCH] linux-interrupts-2: Reduce word repetion Reduce the repetion of words and set missing punctuation. Signed-off-by: Sebastian Fricke --- Interrupts/linux-interrupts-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interrupts/linux-interrupts-2.md b/Interrupts/linux-interrupts-2.md index 3d69382..ab19570 100644 --- a/Interrupts/linux-interrupts-2.md +++ b/Interrupts/linux-interrupts-2.md @@ -83,7 +83,7 @@ vmlinux-objs-y := $(obj)/vmlinux.lds $(obj)/kernel_info.o $(obj)/head_$(BITS).o ... ``` -We can see here that `head_*` depends on the `$(BITS)` variable which depends on the architecture. You can find it in the [arch/x86/Makefile](https://github.com/torvalds/linux/blob/16f73eb02d7e1765ccab3d2018e0bd98eb93d973/arch/x86/Makefile): +We can see here that `head_*` depends on the `$(BITS)` variable, which is based on the architecture. The variable is defined within [arch/x86/Makefile](https://github.com/torvalds/linux/blob/16f73eb02d7e1765ccab3d2018e0bd98eb93d973/arch/x86/Makefile): ``` ifeq ($(CONFIG_X86_32),y)