diff options
author | Xiubo Li <Li.Xiubo@freescale.com> | 2014-05-07 20:25:52 -0700 |
---|---|---|
committer | Bryan Wu <cooloney@gmail.com> | 2014-05-08 14:28:08 +0800 |
commit | 0c9a03b68511daf078256367e7a98d7ff3b7dfcb (patch) | |
tree | 0edd16dbb3a39f6ff8726a76bfb1dfa3d324d536 /drivers/leds/leds-bd2802.c | |
parent | 24c9301ffd21356bcd865a5155a501e5059c4c6f (diff) | |
download | op-kernel-dev-0c9a03b68511daf078256367e7a98d7ff3b7dfcb.zip op-kernel-dev-0c9a03b68511daf078256367e7a98d7ff3b7dfcb.tar.gz |
leds: Remove duplicated OOM message for individual driver
The OOM message of individual driver is unnecessary, and this is
duplicate the memory subsystem generic OOM message.
Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
Diffstat (limited to 'drivers/leds/leds-bd2802.c')
-rw-r--r-- | drivers/leds/leds-bd2802.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/leds/leds-bd2802.c b/drivers/leds/leds-bd2802.c index fb5a347..6078c15 100644 --- a/drivers/leds/leds-bd2802.c +++ b/drivers/leds/leds-bd2802.c @@ -678,10 +678,8 @@ static int bd2802_probe(struct i2c_client *client, int ret, i; led = devm_kzalloc(&client->dev, sizeof(struct bd2802_led), GFP_KERNEL); - if (!led) { - dev_err(&client->dev, "failed to allocate driver data\n"); + if (!led) return -ENOMEM; - } led->client = client; pdata = led->pdata = dev_get_platdata(&client->dev); |