extern struct irq_data *irq_domain_get_irq_data(struct irq_domain *domain,
                                                unsigned int virq);
 extern void irq_domain_set_info(struct irq_domain *domain, unsigned int virq,
-                               irq_hw_number_t hwirq, struct irq_chip *chip,
+                               irq_hw_number_t hwirq,
+                               const struct irq_chip *chip,
                                void *chip_data, irq_flow_handler_t handler,
                                void *handler_data, const char *handler_name);
 extern void irq_domain_reset_irq_data(struct irq_data *irq_data);
 extern int irq_domain_set_hwirq_and_chip(struct irq_domain *domain,
                                         unsigned int virq,
                                         irq_hw_number_t hwirq,
-                                        struct irq_chip *chip,
+                                        const struct irq_chip *chip,
                                         void *chip_data);
 extern void irq_domain_free_irqs_common(struct irq_domain *domain,
                                        unsigned int virq,
 
  * @chip_data: The associated chip data
  */
 int irq_domain_set_hwirq_and_chip(struct irq_domain *domain, unsigned int virq,
-                                 irq_hw_number_t hwirq, struct irq_chip *chip,
+                                 irq_hw_number_t hwirq,
+                                 const struct irq_chip *chip,
                                  void *chip_data)
 {
        struct irq_data *irq_data = irq_domain_get_irq_data(domain, virq);
                return -ENOENT;
 
        irq_data->hwirq = hwirq;
-       irq_data->chip = chip ? chip : &no_irq_chip;
+       irq_data->chip = (struct irq_chip *)(chip ? chip : &no_irq_chip);
        irq_data->chip_data = chip_data;
 
        return 0;
  * @handler_name:      The interrupt handler name
  */
 void irq_domain_set_info(struct irq_domain *domain, unsigned int virq,
-                        irq_hw_number_t hwirq, struct irq_chip *chip,
+                        irq_hw_number_t hwirq, const struct irq_chip *chip,
                         void *chip_data, irq_flow_handler_t handler,
                         void *handler_data, const char *handler_name)
 {
  * @handler_name:      The interrupt handler name
  */
 void irq_domain_set_info(struct irq_domain *domain, unsigned int virq,
-                        irq_hw_number_t hwirq, struct irq_chip *chip,
+                        irq_hw_number_t hwirq, const struct irq_chip *chip,
                         void *chip_data, irq_flow_handler_t handler,
                         void *handler_data, const char *handler_name)
 {