aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2010-10-15 09:00:06 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-10-15 15:57:44 -0400
commit0d91f22b75347d9503b17a42b6c74d3f7750acd6 (patch)
tree55167f95c826e3023bdc1cc436d282a02e7f8bad
parent6cf9e995f91e5bbffb2bef85feef490e5b67605d (diff)
drivers/net/wireless/p54/eeprom.c: Return -ENOMEM on memory allocation failure
In this code, 0 is returned on memory allocation failure, even though other failures return -ENOMEM or other similar values. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression ret; expression x,e1,e2,e3; @@ ret = 0 ... when != ret = e1 *x = \(kmalloc\|kcalloc\|kzalloc\)(...) ... when != ret = e2 if (x == NULL) { ... when != ret = e3 return ret; } // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Cc: <stable@kernel.org> Acked-by: Christian Lamparter <chunkeey@googlemail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/p54/eeprom.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/p54/eeprom.c b/drivers/net/wireless/p54/eeprom.c
index 8c05266d37f4..35b09aa0529b 100644
--- a/drivers/net/wireless/p54/eeprom.c
+++ b/drivers/net/wireless/p54/eeprom.c
@@ -261,8 +261,10 @@ static int p54_generate_channel_lists(struct ieee80211_hw *dev)
261 list->max_entries = max_channel_num; 261 list->max_entries = max_channel_num;
262 list->channels = kzalloc(sizeof(struct p54_channel_entry) * 262 list->channels = kzalloc(sizeof(struct p54_channel_entry) *
263 max_channel_num, GFP_KERNEL); 263 max_channel_num, GFP_KERNEL);
264 if (!list->channels) 264 if (!list->channels) {
265 ret = -ENOMEM;
265 goto free; 266 goto free;
267 }
266 268
267 for (i = 0; i < max_channel_num; i++) { 269 for (i = 0; i < max_channel_num; i++) {
268 if (i < priv->iq_autocal_len) { 270 if (i < priv->iq_autocal_len) {