Re: [PATCH 10/18] powerpc: Replace setup_irq() by request_irq()

2020-02-13 Thread Christophe Leroy
Le 12/02/2020 à 09:04, afzal mohammed a écrit : request_irq() is preferred over setup_irq(). Existing callers of setup_irq() reached mostly via 'init_IRQ()' & 'time_init()', while memory allocators are ready by 'mm_init()'. Per tglx[1], setup_irq() existed in olden days when allocators were n

[PATCH 10/18] powerpc: Replace setup_irq() by request_irq()

2020-02-12 Thread afzal mohammed
request_irq() is preferred over setup_irq(). Existing callers of setup_irq() reached mostly via 'init_IRQ()' & 'time_init()', while memory allocators are ready by 'mm_init()'. Per tglx[1], setup_irq() existed in olden days when allocators were not ready by the time early interrupts were initialize