From 65e93c4ca3587d9007e87653f9436463d2823530 Mon Sep 17 00:00:00 2001 From: Christian Lamparter Date: Sat, 12 Mar 2011 00:01:26 +0100 Subject: [PATCH] carl9170 firmware: fix uninitialized txfail variable Signed-off-by: Christian Lamparter --- carlfw/src/wlan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/carlfw/src/wlan.c b/carlfw/src/wlan.c index b81b74f..ec50e6c 100644 --- a/carlfw/src/wlan.c +++ b/carlfw/src/wlan.c @@ -358,7 +358,7 @@ static bool wlan_tx_status(struct dma_queue *queue, { struct carl9170_tx_superframe *super = get_super(desc); unsigned int qidx = super->s.queue; - bool txfail, success; + bool txfail = false, success; success = true; -- 2.31.1