mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
HSI: omap_ssi: Delete an error message for a failed memory allocation in ssi_add_controller()
The script "checkpatch.pl" pointed information out like the following. WARNING: Possible unnecessary 'out of memory' message Thus remove such a statement here. Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
This commit is contained in:
parent
8621e620c1
commit
0fbad7c8e2
1 changed files with 1 additions and 3 deletions
|
|
@ -384,10 +384,8 @@ static int ssi_add_controller(struct hsi_controller *ssi,
|
|||
int err;
|
||||
|
||||
omap_ssi = devm_kzalloc(&ssi->device, sizeof(*omap_ssi), GFP_KERNEL);
|
||||
if (!omap_ssi) {
|
||||
dev_err(&pd->dev, "not enough memory for omap ssi\n");
|
||||
if (!omap_ssi)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
err = ida_simple_get(&platform_omap_ssi_ida, 0, 0, GFP_KERNEL);
|
||||
if (err < 0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue