@@ -72,7 +72,7 @@ void of_phandle_args_to_fwspec(struct device_node *np, const u32 *args,
72
72
73
73
/**
74
74
* struct irq_domain_ops - Methods for irq_domain objects
75
- * @match: Match an interrupt controller device node to a host , returns
75
+ * @match: Match an interrupt controller device node to a domain , returns
76
76
* 1 on a match
77
77
* @select: Match an interrupt controller fw specification. It is more generic
78
78
* than @match as it receives a complete struct irq_fwspec. Therefore,
@@ -454,7 +454,7 @@ static inline struct irq_domain *irq_domain_add_nomap(struct device_node *of_nod
454
454
return IS_ERR (d ) ? NULL : d ;
455
455
}
456
456
457
- unsigned int irq_create_direct_mapping (struct irq_domain * host );
457
+ unsigned int irq_create_direct_mapping (struct irq_domain * domain );
458
458
#endif
459
459
460
460
static inline struct irq_domain * irq_domain_add_tree (struct device_node * of_node ,
@@ -507,24 +507,24 @@ static inline struct irq_domain *irq_domain_create_tree(struct fwnode_handle *fw
507
507
return IS_ERR (d ) ? NULL : d ;
508
508
}
509
509
510
- void irq_domain_remove (struct irq_domain * host );
510
+ void irq_domain_remove (struct irq_domain * domain );
511
511
512
512
int irq_domain_associate (struct irq_domain * domain , unsigned int irq ,
513
513
irq_hw_number_t hwirq );
514
514
void irq_domain_associate_many (struct irq_domain * domain ,
515
515
unsigned int irq_base ,
516
516
irq_hw_number_t hwirq_base , int count );
517
517
518
- unsigned int irq_create_mapping_affinity (struct irq_domain * host ,
518
+ unsigned int irq_create_mapping_affinity (struct irq_domain * domain ,
519
519
irq_hw_number_t hwirq ,
520
520
const struct irq_affinity_desc * affinity );
521
521
unsigned int irq_create_fwspec_mapping (struct irq_fwspec * fwspec );
522
522
void irq_dispose_mapping (unsigned int virq );
523
523
524
- static inline unsigned int irq_create_mapping (struct irq_domain * host ,
524
+ static inline unsigned int irq_create_mapping (struct irq_domain * domain ,
525
525
irq_hw_number_t hwirq )
526
526
{
527
- return irq_create_mapping_affinity (host , hwirq , NULL );
527
+ return irq_create_mapping_affinity (domain , hwirq , NULL );
528
528
}
529
529
530
530
struct irq_desc * __irq_resolve_mapping (struct irq_domain * domain ,
0 commit comments