Skip to content

Commit 29504e9

Browse files
authored
Merge pull request #302 from EricccTaiwan/irq
Fix incorrect plural form of IRQ
2 parents fc3d9c6 + 45f5831 commit 29504e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lkmpg.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1951,8 +1951,8 @@ \subsection{Interrupt Handlers}
19511951
The second, called interrupts, is much harder to implement because it has to be dealt with when convenient for the hardware, not the CPU.
19521952
Hardware devices typically have a very small amount of RAM, and if you do not read their information when available, it is lost.
19531953

1954-
Under Linux, hardware interrupts are called IRQ's (Interrupt ReQuests).
1955-
There are two types of IRQ's, short and long.
1954+
Under Linux, hardware interrupts are called IRQs (Interrupt ReQuests).
1955+
There are two types of IRQs, short and long.
19561956
A short IRQ is one which is expected to take a very short period of time, during which the rest of the machine will be blocked and no other interrupts will be handled.
19571957
A long IRQ is one which can take longer, and during which other interrupts may occur (but not interrupts from the same device).
19581958
If at all possible, it is better to declare an interrupt handler to be long.

0 commit comments

Comments
 (0)