Re: [patch] extcon: use correct size

2016-02-04 Thread Chanwoo Choi
Hi Dan, On 2016년 02월 04일 20:36, Dan Carpenter wrote: > The info->status[] array has 3 elements. We are using size > MAX77843_MUIC_IRQ_NUM (16) instead of MAX77843_MUIC_STATUS_NUM (3) as > intended. > > Fixes: 135d9f7d135a ('extcon: max77843: Clear IRQ bits state before request > IRQ') > Signed-

RE: [patch] extcon: use correct size

2016-02-04 Thread 김재원
Hi, Dan 02/05/2016 04:53 AM에 Dan Carpenter wrote: > > On Thu, Feb 04, 2016 at 01:47:41PM +0100, walter harms wrote: > > > > > > Am 04.02.2016 12:36, schrieb Dan Carpenter: > > > The info->status[] array has 3 elements. We are using size > > > MAX77843_MUIC_IRQ_NUM (16) instead of MAX77843_MUI

Re: [patch] extcon: use correct size

2016-02-04 Thread Krzysztof Kozlowski
2016-02-04 20:36 GMT+09:00 Dan Carpenter : > The info->status[] array has 3 elements. We are using size > MAX77843_MUIC_IRQ_NUM (16) instead of MAX77843_MUIC_STATUS_NUM (3) as > intended. > > Fixes: 135d9f7d135a ('extcon: max77843: Clear IRQ bits state before request > IRQ') > Signed-off-by: Dan

Re: [patch] extcon: use correct size

2016-02-04 Thread Dan Carpenter
On Thu, Feb 04, 2016 at 01:47:41PM +0100, walter harms wrote: > > > Am 04.02.2016 12:36, schrieb Dan Carpenter: > > The info->status[] array has 3 elements. We are using size > > MAX77843_MUIC_IRQ_NUM (16) instead of MAX77843_MUIC_STATUS_NUM (3) as > > intended. > > > > Fixes: 135d9f7d135a ('ex

Re: [patch] extcon: use correct size

2016-02-04 Thread walter harms
Am 04.02.2016 12:36, schrieb Dan Carpenter: > The info->status[] array has 3 elements. We are using size > MAX77843_MUIC_IRQ_NUM (16) instead of MAX77843_MUIC_STATUS_NUM (3) as > intended. > > Fixes: 135d9f7d135a ('extcon: max77843: Clear IRQ bits state before request > IRQ') > Signed-off-by:

[patch] extcon: use correct size

2016-02-04 Thread Dan Carpenter
The info->status[] array has 3 elements. We are using size MAX77843_MUIC_IRQ_NUM (16) instead of MAX77843_MUIC_STATUS_NUM (3) as intended. Fixes: 135d9f7d135a ('extcon: max77843: Clear IRQ bits state before request IRQ') Signed-off-by: Dan Carpenter --- This is from static analysis and *NOT TES