diff options
Diffstat (limited to 'Documentation/IRQ-domain.txt')
-rw-r--r-- | Documentation/IRQ-domain.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/IRQ-domain.txt b/Documentation/IRQ-domain.txt index 27dcaabfb4db..1401cece745a 100644 --- a/Documentation/IRQ-domain.txt +++ b/Documentation/IRQ-domain.txt | |||
@@ -93,6 +93,7 @@ Linux IRQ number into the hardware. | |||
93 | Most drivers cannot use this mapping. | 93 | Most drivers cannot use this mapping. |
94 | 94 | ||
95 | ==== Legacy ==== | 95 | ==== Legacy ==== |
96 | irq_domain_add_simple() | ||
96 | irq_domain_add_legacy() | 97 | irq_domain_add_legacy() |
97 | irq_domain_add_legacy_isa() | 98 | irq_domain_add_legacy_isa() |
98 | 99 | ||
@@ -115,3 +116,7 @@ The legacy map should only be used if fixed IRQ mappings must be | |||
115 | supported. For example, ISA controllers would use the legacy map for | 116 | supported. For example, ISA controllers would use the legacy map for |
116 | mapping Linux IRQs 0-15 so that existing ISA drivers get the correct IRQ | 117 | mapping Linux IRQs 0-15 so that existing ISA drivers get the correct IRQ |
117 | numbers. | 118 | numbers. |
119 | |||
120 | Most users of legacy mappings should use irq_domain_add_simple() which | ||
121 | will use a legacy domain only if an IRQ range is supplied by the | ||
122 | system and will otherwise use a linear domain mapping. | ||