From 7fa2b6620c8943eda9f91b60502ab5e6abeba001 Mon Sep 17 00:00:00 2001 From: Dou Liyang Date: Thu, 26 Jan 2017 11:23:57 +0800 Subject: [PATCH] fix a typo:vector_irq s/vecto_irq/vector_irq --- interrupts/interrupts-8.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interrupts/interrupts-8.md b/interrupts/interrupts-8.md index 737c41f..63fdfd0 100644 --- a/interrupts/interrupts-8.md +++ b/interrupts/interrupts-8.md @@ -28,7 +28,7 @@ where `NR_VECTORS` is count of the vector number and as you can remember from th #define NR_VECTORS 256 ``` -So, in the start of the `init_IRQ` function we fill the `vecto_irq` [percpu](http://0xax.gitbooks.io/linux-insides/content/Concepts/per-cpu.html) array with the vector number of the `legacy` interrupts: +So, in the start of the `init_IRQ` function we fill the `vector_irq` [percpu](http://0xax.gitbooks.io/linux-insides/content/Concepts/per-cpu.html) array with the vector number of the `legacy` interrupts: ```C void __init init_IRQ(void)