From 3362d9fb3a94d0909b79c290abc8db6abe4cca21 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Fri, 14 Sep 2018 22:25:09 +0200 Subject: target/linux : drop many arch --- .../420-hci-h4p-interrupt-workaround.patch | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 target/linux/omap24xx/patches-3.3/420-hci-h4p-interrupt-workaround.patch (limited to 'target/linux/omap24xx/patches-3.3/420-hci-h4p-interrupt-workaround.patch') diff --git a/target/linux/omap24xx/patches-3.3/420-hci-h4p-interrupt-workaround.patch b/target/linux/omap24xx/patches-3.3/420-hci-h4p-interrupt-workaround.patch deleted file mode 100644 index 0d2b4d2..0000000 --- a/target/linux/omap24xx/patches-3.3/420-hci-h4p-interrupt-workaround.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- a/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c -+++ b/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c -@@ -235,7 +235,7 @@ struct omap_hwmod_irq_info omap2_timer11 - }; - - struct omap_hwmod_irq_info omap2_uart1_mpu_irqs[] = { -- { .irq = INT_24XX_UART1_IRQ, }, -+ { .irq = 0, }, - { .irq = -1 } - }; - ---- a/drivers/tty/serial/omap-serial.c -+++ b/drivers/tty/serial/omap-serial.c -@@ -517,8 +517,10 @@ static int serial_omap_startup(struct ua - /* - * Allocate the IRQ - */ -- retval = request_irq(up->port.irq, serial_omap_irq, up->port.irqflags, -- up->name, up); -+ retval = 0; -+ if (up->port.irq) -+ retval = request_irq(up->port.irq, serial_omap_irq, -+ up->port.irqflags, up->name, up); - if (retval) - return retval; - -@@ -629,7 +631,8 @@ static void serial_omap_shutdown(struct - } - - pm_runtime_put(&up->pdev->dev); -- free_irq(up->port.irq, up); -+ if (up->port.irq) -+ free_irq(up->port.irq, up); - } - - static inline void -- cgit v1.1