Revert "irqchip/imx-irqsteer: Constify irq_chip struct"

This reverts commit 06a93b7203 which is
commit e9a50f12e579a48e124ac5adb93dafc35f0a46b8 upstream.

It breaks the Android kernel abi and can be brought back in the future
in an abi-safe way if it is really needed.

Bug: 161946584
Change-Id: Ib907b82915f576c228c2b293b48ee0a9a58e9d82
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Greg Kroah-Hartman 2024-08-30 06:49:51 +00:00
parent 6943c015b0
commit b5df17128a

View File

@ -70,7 +70,7 @@ static void imx_irqsteer_irq_mask(struct irq_data *d)
raw_spin_unlock_irqrestore(&data->lock, flags);
}
static const struct irq_chip imx_irqsteer_irq_chip = {
static struct irq_chip imx_irqsteer_irq_chip = {
.name = "irqsteer",
.irq_mask = imx_irqsteer_irq_mask,
.irq_unmask = imx_irqsteer_irq_unmask,