Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1476161
| From | Alexandre Torgue <alexandre.torgue@st.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v3 2/9] drivers: irqchip: Add STM32 external interrupts support |
| Date | 2016-09-05 09:50 +0200 |
| Message-ID | <sdWPf-Jw-1@gated-at.bofh.it> (permalink) |
| References | <scYJs-1dc-7@gated-at.bofh.it> <scYJs-1dc-23@gated-at.bofh.it> <sd20G-3rR-19@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi Thomas, On 09/02/2016 08:57 PM, Thomas Gleixner wrote: > Alexandre, > > On Fri, 2 Sep 2016, Alexandre TORGUE wrote: > > This all looks very reasonable. The only complaint I have is your variable > declaration ordering or the lack thereof. > > 1) >> + struct irq_domain *domain = irq_desc_get_handler_data(desc); >> + struct irq_chip_generic *gc = domain->gc->gc[0]; >> + struct irq_chip *chip = irq_desc_get_chip(desc); >> + unsigned long pending; >> + int n; > > 2) >> + struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data); >> + u32 rtsr, ftsr; >> + int pin = data->hwirq; > > 3) >> + struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data); >> + int pin = data->hwirq; >> + u32 emr; > > 4) >> + irq_hw_number_t hwirq; >> + struct irq_fwspec *fwspec = data; >> + struct irq_chip_generic *gc = d->gc->gc[0]; > > 5) >> + int nr_irqs, nr_exti, ret, i; >> + unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN; >> + struct irq_domain *domain; >> + struct irq_chip_generic *gc; >> + void *base; > > #1 and 3 have the ordering which is preferred in the irq code. > > #2, #4 and #5 are three permutations which are way harder to read. > >> + struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data); >> + int pin = data->hwirq; >> + u32 rtsr, ftsr; > >> + struct irq_chip_generic *gc = d->gc->gc[0]; >> + struct irq_fwspec *fwspec = data; >> + irq_hw_number_t hwirq; > >> + unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN; >> + int nr_irqs, nr_exti, ret, i; >> + struct irq_chip_generic *gc; >> + struct irq_domain *domain; >> + void *base; > > Can you spot the difference? Thanks for review and for proposal. It Will be in next version. Regards Alex > > Thanks, > > tglx >
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH v3 2/9] drivers: irqchip: Add STM32 external interrupts support Alexandre TORGUE <alexandre.torgue@st.com> - 2016-09-02 17:40 +0200
Re: [PATCH v3 2/9] drivers: irqchip: Add STM32 external interrupts support Thomas Gleixner <tglx@linutronix.de> - 2016-09-02 21:10 +0200
Re: [PATCH v3 2/9] drivers: irqchip: Add STM32 external interrupts support Alexandre Torgue <alexandre.torgue@st.com> - 2016-09-05 09:50 +0200
csiph-web