From 8cf3968ccb4e6768425ed3e26124e690046cc023 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Wed, 16 Mar 2016 10:42:13 +0300 Subject: ALSA: mixart: silence an uninitialized variable warning We could print the uninitialized value of "stat" in the error message. Signed-off-by: Dan Carpenter Signed-off-by: Takashi Iwai --- sound/pci/mixart/mixart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sound/pci/mixart') diff --git a/sound/pci/mixart/mixart.c b/sound/pci/mixart/mixart.c index bc81b9f75ed0..25c0ddd3a53b 100644 --- a/sound/pci/mixart/mixart.c +++ b/sound/pci/mixart/mixart.c @@ -132,7 +132,7 @@ static int mixart_set_pipe_state(struct mixart_mgr *mgr, } if(start) { - u32 stat; + u32 stat = 0; group_state.pipe_count = 0; /* in case of start same command once again with pipe_count=0 */ -- cgit