瀏覽代碼

ipmi_si: Delete an error message for a failed memory allocation in try_smi_init()

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Markus Elfring 7 年之前
父節點
當前提交
d7e17fe4f7
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      drivers/char/ipmi/ipmi_si_intf.c

+ 0 - 1
drivers/char/ipmi/ipmi_si_intf.c

@@ -2096,7 +2096,6 @@ static int try_smi_init(struct smi_info *new_smi)
 	/* Allocate the state machine's data and initialize it. */
 	new_smi->si_sm = kmalloc(new_smi->handlers->size(), GFP_KERNEL);
 	if (!new_smi->si_sm) {
-		pr_err(PFX "Could not allocate state machine memory\n");
 		rv = -ENOMEM;
 		goto out_err;
 	}