Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1230063

Re: [PATCH v3 2/2] ARM: irqchip: mxs: add Alphascale ASM9260 support

From Thomas Gleixner <tglx@linutronix.de>
Newsgroups linux.kernel
Subject Re: [PATCH v3 2/2] ARM: irqchip: mxs: add Alphascale ASM9260 support
Date 2015-09-22 12:40 +0200
Message-ID <qbt9n-2KM-9@gated-at.bofh.it> (permalink)
References <qaKYF-6RH-3@gated-at.bofh.it> <qb7Vf-5JD-7@gated-at.bofh.it> <qb7Vf-5JD-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Mon, 21 Sep 2015, Oleksij Rempel wrote:
>  static int icoll_irq_domain_map(struct irq_domain *d, unsigned int virq,
>  				irq_hw_number_t hw)
>  {
> -	irq_set_chip_and_handler(virq, &mxs_icoll_chip, handle_level_irq);
> +	struct irq_chip *chip;
> +
> +	if (icoll_priv.type == ICOLL)
> +		chip = &mxs_icoll_chip;
> +	else
> +		chip = &asm9260_icoll_chip;
> +
> +	irq_set_chip_and_handler(virq, chip, handle_level_irq);
>  	set_irq_flags(virq, IRQF_VALID);

set_irq_flags() is gone. Please redo against 4.3-rc2

Thanks,

	tglx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 0/2] changelog Oleksij Rempel <linux@rempel-privat.de> - 2015-09-18 11:20 +0200
  [PATCH v2 1/2] ARM: irqchip: mxs: prepare driver for HW with different offsets Oleksij Rempel <linux@rempel-privat.de> - 2015-09-18 11:20 +0200
    Re: [PATCH v2 1/2] ARM: irqchip: mxs: prepare driver for HW with  different offsets Thomas Gleixner <tglx@linutronix.de> - 2015-09-18 12:30 +0200
  [PATCH v2 2/2] ARM: irqchip: mxs: add Alpascale ASM9260 support Oleksij Rempel <linux@rempel-privat.de> - 2015-09-18 11:30 +0200
    Re: Possible Spam [PATCH v2 2/2] ARM: irqchip: mxs: add Alpascale  ASM9260 support Marc Zyngier <marc.zyngier@arm.com> - 2015-09-18 12:50 +0200
      Re: Possible Spam [PATCH v2 2/2] ARM: irqchip: mxs: add Alpascale  ASM9260 support Oleksij Rempel <linux@rempel-privat.de> - 2015-09-19 08:00 +0200
        Re: [PATCH v2 2/2] ARM: irqchip: mxs: add Alpascale ASM9260 support Marc Zyngier <marc.zyngier@arm.com> - 2015-09-20 13:30 +0200
          Re: [PATCH v2 2/2] ARM: irqchip: mxs: add Alpascale ASM9260 support Oleksij Rempel <linux@rempel-privat.de> - 2015-09-20 16:00 +0200
          Re: [PATCH v2 2/2] ARM: irqchip: mxs: add Alpascale ASM9260  support Thomas Gleixner <tglx@linutronix.de> - 2015-09-21 11:10 +0200
          [PATCH v3 0/2] Add support for ASM9260 interrupt controller Oleksij Rempel <linux@rempel-privat.de> - 2015-09-21 14:00 +0200
            [PATCH v3 2/2] ARM: irqchip: mxs: add Alphascale ASM9260 support Oleksij Rempel <linux@rempel-privat.de> - 2015-09-21 14:00 +0200
              Re: [PATCH v3 2/2] ARM: irqchip: mxs: add Alphascale ASM9260  support Thomas Gleixner <tglx@linutronix.de> - 2015-09-22 12:40 +0200
                [PATCH v4 1/2] ARM: irqchip: mxs: prepare driver for HW with different offsets Oleksij Rempel <linux@rempel-privat.de> - 2015-09-23 18:30 +0200
                Re: [PATCH v4 1/2] ARM: irqchip: mxs: prepare driver for HW with  different offsets Thomas Gleixner <tglx@linutronix.de> - 2015-09-29 18:10 +0200
                [PATCH v5 0/2] Add support for ASM9260 interrupt controller Oleksij Rempel <linux@rempel-privat.de> - 2015-10-05 21:10 +0200
                [PATCH v5 1/2] ARM: irqchip: mxs: prepare driver for HW with different offsets Oleksij Rempel <linux@rempel-privat.de> - 2015-10-05 21:10 +0200
                [PATCH v5 2/2] ARM: irqchip: mxs: add Alphascale ASM9260 support Oleksij Rempel <linux@rempel-privat.de> - 2015-10-05 21:10 +0200
                [PATCH v4 0/2] Add support for ASM9260 interrupt controller Oleksij Rempel <linux@rempel-privat.de> - 2015-09-23 18:30 +0200
                [PATCH v4 2/2] ARM: irqchip: mxs: add Alphascale ASM9260 support Oleksij Rempel <linux@rempel-privat.de> - 2015-09-23 18:30 +0200
            [PATCH v3 1/2] ARM: irqchip: mxs: prepare driver for HW with different offsets Oleksij Rempel <linux@rempel-privat.de> - 2015-09-21 14:00 +0200
  [PATCH v2 2/2] ARM: irqchip: mxs: add Alpascale ASM9260 support Oleksij Rempel <linux@rempel-privat.de> - 2015-09-18 11:50 +0200
  Re: [PATCH v2 0/2] changelog Marc Zyngier <marc.zyngier@arm.com> - 2015-09-18 12:20 +0200
  Re: [PATCH v2 0/2] changelog Thomas Gleixner <tglx@linutronix.de> - 2015-09-18 12:30 +0200

csiph-web