[U-Boot] [PATCH 3/6] dm: x86: Add a common PIRQ init function

2016-01-17 Thread Simon Glass
Most x86 interrupt drivers will want to use the standard PIRQ routing and table setup. Put this code in a common function so it can be used by those drivers that want it. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- arch/x86/cpu/irq.c | 7 ++- arch/x86/include/asm/irq.h | 7

Re: [U-Boot] [PATCH 3/6] dm: x86: Add a common PIRQ init function

2015-12-14 Thread Bin Meng
On Mon, Dec 14, 2015 at 2:05 PM, Bin Meng wrote: > On Tue, Dec 1, 2015 at 12:47 PM, Simon Glass wrote: >> Most x86 interrupt drivers will want to use the standard PIRQ routing and >> table setup. Put this code in a common function so it can be used by those >> drivers that want it. >> >> Signed-o

Re: [U-Boot] [PATCH 3/6] dm: x86: Add a common PIRQ init function

2015-12-13 Thread Bin Meng
On Tue, Dec 1, 2015 at 12:47 PM, Simon Glass wrote: > Most x86 interrupt drivers will want to use the standard PIRQ routing and > table setup. Put this code in a common function so it can be used by those > drivers that want it. > > Signed-off-by: Simon Glass > --- > Reviewed-by: Bin Meng _

[U-Boot] [PATCH 3/6] dm: x86: Add a common PIRQ init function

2015-11-30 Thread Simon Glass
Most x86 interrupt drivers will want to use the standard PIRQ routing and table setup. Put this code in a common function so it can be used by those drivers that want it. Signed-off-by: Simon Glass --- arch/x86/cpu/irq.c | 7 ++- arch/x86/include/asm/irq.h | 7 +++ 2 files chang