Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ede7af3 authored by Aya Mahfouz's avatar Aya Mahfouz Committed by Greg Kroah-Hartman
Browse files

staging: media: lirc: lirc_zilog.c: remove unnecessary 'out of memory' message



This patch fixes the following the following checkpatch.pl warning:

Possible unnecessary 'out of memory' message

The warning was issued for the file lirc_zilog.c after changing
two custom printk messages to dev_err. The dev_err calls were
simply removed.

Signed-off-by: default avatarAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7499b702
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -771,7 +771,6 @@ static int fw_load(struct IR_tx *tx)
	/* Parse the file */
	tx_data = vmalloc(sizeof(*tx_data));
	if (tx_data == NULL) {
		dev_err(tx->ir->l.dev, "out of memory\n");
		release_firmware(fw_entry);
		ret = -ENOMEM;
		goto out;
@@ -781,7 +780,6 @@ static int fw_load(struct IR_tx *tx)
	/* Copy the data so hotplug doesn't get confused and timeout */
	tx_data->datap = vmalloc(fw_entry->size);
	if (tx_data->datap == NULL) {
		dev_err(tx->ir->l.dev, "out of memory\n");
		release_firmware(fw_entry);
		vfree(tx_data);
		ret = -ENOMEM;