diff options
author | Joe Perches <joe@perches.com> | 2013-02-03 12:28:15 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-04 13:22:35 -0500 |
commit | e68ed8f0d8f5b0f59c0f1098e37007f4e6c9ef86 (patch) | |
tree | 139ba4fc12ad7de52a247f2d66b41e364edb1aa3 /drivers/net/phy | |
parent | 0d2e7a5c608063f72048899d20505c2ee130566c (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/phy')
-rw-r--r-- | drivers/net/phy/spi_ks8995.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/phy/spi_ks8995.c b/drivers/net/phy/spi_ks8995.c index 41eb8ffeb53d..5c87eef40bf9 100644 --- a/drivers/net/phy/spi_ks8995.c +++ b/drivers/net/phy/spi_ks8995.c | |||
@@ -275,10 +275,8 @@ static int ks8995_probe(struct spi_device *spi) | |||
275 | pdata = spi->dev.platform_data; | 275 | pdata = spi->dev.platform_data; |
276 | 276 | ||
277 | ks = kzalloc(sizeof(*ks), GFP_KERNEL); | 277 | ks = kzalloc(sizeof(*ks), GFP_KERNEL); |
278 | if (!ks) { | 278 | if (!ks) |
279 | dev_err(&spi->dev, "no memory for private data\n"); | ||
280 | return -ENOMEM; | 279 | return -ENOMEM; |
281 | } | ||
282 | 280 | ||
283 | mutex_init(&ks->lock); | 281 | mutex_init(&ks->lock); |
284 | ks->pdata = pdata; | 282 | ks->pdata = pdata; |