aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/hamradio
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-02-03 12:28:15 -0500
committerDavid S. Miller <davem@davemloft.net>2013-02-04 13:22:35 -0500
commite68ed8f0d8f5b0f59c0f1098e37007f4e6c9ef86 (patch)
tree139ba4fc12ad7de52a247f2d66b41e364edb1aa3 /drivers/net/hamradio
parent0d2e7a5c608063f72048899d20505c2ee130566c (diff)
drivers:net:misc: Remove unnecessary alloc/OOM messages
alloc failures already get standardized OOM messages and a dump_stack. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/hamradio')
-rw-r--r--drivers/net/hamradio/dmascc.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/net/hamradio/dmascc.c b/drivers/net/hamradio/dmascc.c
index ce555d9ac02c..6636022a1027 100644
--- a/drivers/net/hamradio/dmascc.c
+++ b/drivers/net/hamradio/dmascc.c
@@ -463,13 +463,8 @@ static int __init setup_adapter(int card_base, int type, int n)
463 463
464 /* Initialize what is necessary for write_scc and write_scc_data */ 464 /* Initialize what is necessary for write_scc and write_scc_data */
465 info = kzalloc(sizeof(struct scc_info), GFP_KERNEL | GFP_DMA); 465 info = kzalloc(sizeof(struct scc_info), GFP_KERNEL | GFP_DMA);
466 if (!info) { 466 if (!info)
467 printk(KERN_ERR "dmascc: "
468 "could not allocate memory for %s at %#3x\n",
469 hw[type].name, card_base);
470 goto out; 467 goto out;
471 }
472
473 468
474 info->dev[0] = alloc_netdev(0, "", dev_setup); 469 info->dev[0] = alloc_netdev(0, "", dev_setup);
475 if (!info->dev[0]) { 470 if (!info->dev[0]) {