]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
p54: add missing break in eeprom parser
authorChr <chunkeey@web.de>
Mon, 19 Jan 2009 13:30:26 +0000 (14:30 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Thu, 22 Jan 2009 18:55:02 +0000 (13:55 -0500)
This patch fixes a obvious memory leak in the eeprom parser.

Signed-off-by: Christian Lamparter <chunkeey@web.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/p54/p54common.c

index 12d0717c3992219fc6da29ab8e27de398016665c..61b01930d9aa08d82259f87fc3f7b0a2db5b1e04 100644 (file)
@@ -451,8 +451,8 @@ static int p54_parse_eeprom(struct ieee80211_hw *dev, void *eeprom, int len)
                        }
                        if (err)
                                goto err;
-
-               }
+                       }
+                       break;
                case PDR_PRISM_ZIF_TX_IQ_CALIBRATION:
                        priv->iq_autocal = kmalloc(data_len, GFP_KERNEL);
                        if (!priv->iq_autocal) {