1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-02-22 03:52:01 +00:00

fix a typo:vector_irq

s/vecto_irq/vector_irq
This commit is contained in:
Dou Liyang 2017-01-26 11:23:57 +08:00 committed by GitHub
parent 84b0881e4f
commit 7fa2b6620c

View File

@ -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)