diff options
author | Joe Perches <joe@perches.com> | 2013-02-03 21:28:09 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-04 22:22:33 +0400 |
commit | 09da6c5f60ad2e2018366e47192a9ddbccfb3ac5 (patch) | |
tree | e257e02cf65564724fe6b40dc4406ad92f9bd850 /drivers/net/can/sja1000/peak_pci.c | |
parent | ad4437d4edeabe6a8d34f8cb3865be005ded6a1e (diff) | |
download | linux-09da6c5f60ad2e2018366e47192a9ddbccfb3ac5.tar.xz |
can: Remove unnecessary alloc/OOM messages
alloc failures already get standardized OOM
messages and a dump_stack.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/can/sja1000/peak_pci.c')
-rw-r--r-- | drivers/net/can/sja1000/peak_pci.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/can/sja1000/peak_pci.c b/drivers/net/can/sja1000/peak_pci.c index d84888f03d92..44406a4839f6 100644 --- a/drivers/net/can/sja1000/peak_pci.c +++ b/drivers/net/can/sja1000/peak_pci.c @@ -451,11 +451,8 @@ static int peak_pciec_probe(struct pci_dev *pdev, struct net_device *dev) } else { /* create the bit banging I2C adapter structure */ card = kzalloc(sizeof(struct peak_pciec_card), GFP_KERNEL); - if (!card) { - dev_err(&pdev->dev, - "failed allocating memory for i2c chip\n"); + if (!card) return -ENOMEM; - } card->cfg_base = chan->cfg_base; card->reg_base = priv->reg_base; |