Răsfoiți Sursa

Merge pull request #454 from douliyang/patch-3

fix a typo:vector_irq
0xAX 8 ani în urmă
părinte
comite
a507111b2a
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      interrupts/interrupts-8.md

+ 1 - 1
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)