Loading arch/x86/kernel/apic/msi.c +1 −1 Original line number Diff line number Diff line Loading @@ -264,7 +264,7 @@ static inline int hpet_dev_id(struct irq_domain *domain) static void hpet_msi_write_msg(struct irq_data *data, struct msi_msg *msg) { hpet_msi_write(data->handler_data, msg); hpet_msi_write(irq_data_get_irq_handler_data(data), msg); } static struct irq_chip hpet_msi_controller = { Loading arch/x86/kernel/hpet.c +2 −2 Original line number Diff line number Diff line Loading @@ -426,7 +426,7 @@ static struct irq_domain *hpet_domain; void hpet_msi_unmask(struct irq_data *data) { struct hpet_dev *hdev = data->handler_data; struct hpet_dev *hdev = irq_data_get_irq_handler_data(data); unsigned int cfg; /* unmask it */ Loading @@ -437,7 +437,7 @@ void hpet_msi_unmask(struct irq_data *data) void hpet_msi_mask(struct irq_data *data) { struct hpet_dev *hdev = data->handler_data; struct hpet_dev *hdev = irq_data_get_irq_handler_data(data); unsigned int cfg; /* mask it */ Loading Loading
arch/x86/kernel/apic/msi.c +1 −1 Original line number Diff line number Diff line Loading @@ -264,7 +264,7 @@ static inline int hpet_dev_id(struct irq_domain *domain) static void hpet_msi_write_msg(struct irq_data *data, struct msi_msg *msg) { hpet_msi_write(data->handler_data, msg); hpet_msi_write(irq_data_get_irq_handler_data(data), msg); } static struct irq_chip hpet_msi_controller = { Loading
arch/x86/kernel/hpet.c +2 −2 Original line number Diff line number Diff line Loading @@ -426,7 +426,7 @@ static struct irq_domain *hpet_domain; void hpet_msi_unmask(struct irq_data *data) { struct hpet_dev *hdev = data->handler_data; struct hpet_dev *hdev = irq_data_get_irq_handler_data(data); unsigned int cfg; /* unmask it */ Loading @@ -437,7 +437,7 @@ void hpet_msi_unmask(struct irq_data *data) void hpet_msi_mask(struct irq_data *data) { struct hpet_dev *hdev = data->handler_data; struct hpet_dev *hdev = irq_data_get_irq_handler_data(data); unsigned int cfg; /* mask it */ Loading