Re: [Patch] :Fix ISR return value in i2c-mpc.c

2014-12-12 Thread Amit Tomar
Sorry for sending it to wrong mailing-list :( Thanks, Amit. From: Wood Scott-B07421 Sent: Saturday, December 13, 2014 2:40 AM To: Tomar Amit-B51888 Cc: linuxppc-dev@lists.ozlabs.org; ag...@suse.de Subject: Re: [Patch] :Fix ISR return value in i2c-mpc.c On

[PATCH] powerpc/pci: remove the multi-init for pci_dn->phb

2014-12-12 Thread Wei Yang
pci_dn->phb is set to phb in update_dn_pci_info(), if succeed. This patch removes the duplication of pci_dn->phb initialization. Signed-off-by: Wei Yang --- arch/powerpc/kernel/pci_dn.c |1 - 1 file changed, 1 deletion(-) diff --git a/arch/powerpc/kernel/pci_dn.c b/arch/powerpc/kernel/pci_

Re: [Patch] :Fix ISR return value in i2c-mpc.c

2014-12-12 Thread Scott Wood
On Fri, 2014-12-12 at 11:17 +, Amit Tomar wrote: > In current scenario, ISR of i2c-mpc.c is returning IRQ_HANDLED for doing > nothing which is not right . > > With below patch ISR now return IRQ_NONE for doing nothing and IRQ_HANDLED > for doing handler work. Wrap the commit message at arou

Re: [Patch] :Fix ISR return value in i2c-mpc.c

2014-12-12 Thread Alexander Graf
> Am 12.12.2014 um 09:08 schrieb Amit Tomar : > > ISR should return IRQ_HANDLED only in case of handling something. > > > Signed-off-by: Amit Singh Tomar Oh, this is on the Linux side. Sorry, please ignore my previous email. Please provide some information on what breakage you're fixing wi

Re: [Patch] :Fix ISR return value in i2c-mpc.c

2014-12-12 Thread Alexander Graf
> Am 12.12.2014 um 09:08 schrieb Amit Tomar : > > ISR should return IRQ_HANDLED only in case of handling something. > > > Signed-off-by: Amit Singh Tomar Please just send a v2 of your patch with the below fix included :). Alex ___ Linuxppc-dev

RE: [Patch] :Fix ISR return value in i2c-mpc.c

2014-12-12 Thread Amit Tomar
In current scenario, ISR of i2c-mpc.c is returning IRQ_HANDLED for doing nothing which is not right . With below patch ISR now return IRQ_NONE for doing nothing and IRQ_HANDLED for doing handler work. Signed-off-by: Amit Singh Tomar --- drivers/i2c/busses/i2c-mpc.c |    3 ++- 1 file changed,

[PATCH] powerpc/powernv: force all CPUs to be bootable

2014-12-12 Thread Greg Kurz
The subcore logic needs all the CPUs declared in the DT to be bootable, otherwise the kernel hangs at boot time. Since subcore support starts with POWER8, we can keep the current behaviour for older CPUs. Signed-off-by: Greg Kurz --- Since smt-enabled is still needed by Freescale, the choice was

[PATCH] Update CXL ABI documentation

2014-12-12 Thread Philippe Bergheaud
From: Philippe Bergheaud This fixes two typos and explains where shared attributes are stored. Signed-off-by: Philippe Bergheaud Acked-by: Michael Neuling --- Documentation/ABI/testing/sysfs-class-cxl | 11 --- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Document

[Patch] :Fix ISR return value in i2c-mpc.c

2014-12-12 Thread Amit Tomar
ISR should return IRQ_HANDLED only in case of handling something. Signed-off-by: Amit Singh Tomar --- drivers/i2c/busses/i2c-mpc.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/i2c/busses/i2c-mpc.c b/drivers/i2c/busses/i2c-mpc.c index 0edf630..7a3136f 100644 ---