Re: [PATCH 4/5] IPMI: Fix some uninitialized warning

2012-10-26 Thread Linus Torvalds
On Fri, Oct 26, 2012 at 12:35 PM, Corey Minyard wrote: > > I'll do a patch to switch it to uninitialized_var() for the next set of > things I send. Thanks. Actually, I'm seriously considering getting rid of uninitialized_var(). The thing is an abomination, and we've already had one bug due to i

Re: [PATCH 4/5] IPMI: Fix some uninitialized warning

2012-10-26 Thread Corey Minyard
On 10/22/2012 06:49 PM, Andrew Morton wrote: On Tue, 16 Oct 2012 15:53:39 -0500 miny...@acm.org wrote: From: Corey Minyard There was a spot where the compiler couldn't tell some variables would be set. So initialize them to make the warning go away. Signed-off-by: Corey Minyard --- drive

Re: [PATCH 4/5] IPMI: Fix some uninitialized warning

2012-10-22 Thread Andrew Morton
On Tue, 16 Oct 2012 15:53:39 -0500 miny...@acm.org wrote: > From: Corey Minyard > > There was a spot where the compiler couldn't tell some variables > would be set. So initialize them to make the warning go away. > > Signed-off-by: Corey Minyard > --- > drivers/char/ipmi/ipmi_msghandler.c |

[PATCH 4/5] IPMI: Fix some uninitialized warning

2012-10-16 Thread minyard
From: Corey Minyard There was a spot where the compiler couldn't tell some variables would be set. So initialize them to make the warning go away. Signed-off-by: Corey Minyard --- drivers/char/ipmi/ipmi_msghandler.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dri