Commit 39d98bdc authored by Peter Chen's avatar Peter Chen Committed by Greg Kroah-Hartman

usb: misc: usb3503: delete unnecessary 'out of memory' messages

The memory subsystem has already had similar message for it.
Signed-off-by: default avatarPeter Chen <peter.chen@freescale.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 58f7e76f
...@@ -314,10 +314,8 @@ static int usb3503_i2c_probe(struct i2c_client *i2c, ...@@ -314,10 +314,8 @@ static int usb3503_i2c_probe(struct i2c_client *i2c,
int err; int err;
hub = devm_kzalloc(&i2c->dev, sizeof(struct usb3503), GFP_KERNEL); hub = devm_kzalloc(&i2c->dev, sizeof(struct usb3503), GFP_KERNEL);
if (!hub) { if (!hub)
dev_err(&i2c->dev, "private data alloc fail\n");
return -ENOMEM; return -ENOMEM;
}
i2c_set_clientdata(i2c, hub); i2c_set_clientdata(i2c, hub);
hub->regmap = devm_regmap_init_i2c(i2c, &usb3503_regmap_config); hub->regmap = devm_regmap_init_i2c(i2c, &usb3503_regmap_config);
...@@ -336,10 +334,8 @@ static int usb3503_platform_probe(struct platform_device *pdev) ...@@ -336,10 +334,8 @@ static int usb3503_platform_probe(struct platform_device *pdev)
struct usb3503 *hub; struct usb3503 *hub;
hub = devm_kzalloc(&pdev->dev, sizeof(struct usb3503), GFP_KERNEL); hub = devm_kzalloc(&pdev->dev, sizeof(struct usb3503), GFP_KERNEL);
if (!hub) { if (!hub)
dev_err(&pdev->dev, "private data alloc fail\n");
return -ENOMEM; return -ENOMEM;
}
hub->dev = &pdev->dev; hub->dev = &pdev->dev;
return usb3503_probe(hub); return usb3503_probe(hub);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment