All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] irqchip/gic-v2m: remove unnecessary oom message
@ 2021-06-09 14:05 Zhen Lei
  2021-06-11 13:54 ` [irqchip: irq/irqchip-next] irqchip/gic-v2m: Remove " irqchip-bot for Zhen Lei
  0 siblings, 1 reply; 2+ messages in thread
From: Zhen Lei @ 2021-06-09 14:05 UTC (permalink / raw)
  To: Thomas Gleixner, Marc Zyngier, linux-kernel; +Cc: Zhen Lei

Fixes scripts/checkpatch.pl warning:
WARNING: Possible unnecessary 'out of memory' message

Remove it can help us save a bit of memory.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
---
 drivers/irqchip/irq-gic-v2m.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/irqchip/irq-gic-v2m.c b/drivers/irqchip/irq-gic-v2m.c
index 4116b48e60aff87..be9ea6fd6f8b2e6 100644
--- a/drivers/irqchip/irq-gic-v2m.c
+++ b/drivers/irqchip/irq-gic-v2m.c
@@ -323,10 +323,8 @@ static int __init gicv2m_init_one(struct fwnode_handle *fwnode,
 	struct v2m_data *v2m;
 
 	v2m = kzalloc(sizeof(struct v2m_data), GFP_KERNEL);
-	if (!v2m) {
-		pr_err("Failed to allocate struct v2m_data.\n");
+	if (!v2m)
 		return -ENOMEM;
-	}
 
 	INIT_LIST_HEAD(&v2m->entry);
 	v2m->fwnode = fwnode;
-- 
2.26.0.106.g9fadedd



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [irqchip: irq/irqchip-next] irqchip/gic-v2m: Remove unnecessary oom message
  2021-06-09 14:05 [PATCH 1/1] irqchip/gic-v2m: remove unnecessary oom message Zhen Lei
@ 2021-06-11 13:54 ` irqchip-bot for Zhen Lei
  0 siblings, 0 replies; 2+ messages in thread
From: irqchip-bot for Zhen Lei @ 2021-06-11 13:54 UTC (permalink / raw)
  To: linux-kernel; +Cc: Zhen Lei, Marc Zyngier, tglx

The following commit has been merged into the irq/irqchip-next branch of irqchip:

Commit-ID:     98ae089e1e6e5bab6f8c89412da5fc447e3580cb
Gitweb:        https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms/98ae089e1e6e5bab6f8c89412da5fc447e3580cb
Author:        Zhen Lei <thunder.leizhen@huawei.com>
AuthorDate:    Wed, 09 Jun 2021 22:05:34 +08:00
Committer:     Marc Zyngier <maz@kernel.org>
CommitterDate: Fri, 11 Jun 2021 14:19:32 +01:00

irqchip/gic-v2m: Remove unnecessary oom message

Fixes scripts/checkpatch.pl warning:
WARNING: Possible unnecessary 'out of memory' message

Remove it can help us save a bit of memory.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20210609140534.14478-1-thunder.leizhen@huawei.com
---
 drivers/irqchip/irq-gic-v2m.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/irqchip/irq-gic-v2m.c b/drivers/irqchip/irq-gic-v2m.c
index 4116b48..be9ea6f 100644
--- a/drivers/irqchip/irq-gic-v2m.c
+++ b/drivers/irqchip/irq-gic-v2m.c
@@ -323,10 +323,8 @@ static int __init gicv2m_init_one(struct fwnode_handle *fwnode,
 	struct v2m_data *v2m;
 
 	v2m = kzalloc(sizeof(struct v2m_data), GFP_KERNEL);
-	if (!v2m) {
-		pr_err("Failed to allocate struct v2m_data.\n");
+	if (!v2m)
 		return -ENOMEM;
-	}
 
 	INIT_LIST_HEAD(&v2m->entry);
 	v2m->fwnode = fwnode;

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-06-11 13:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-09 14:05 [PATCH 1/1] irqchip/gic-v2m: remove unnecessary oom message Zhen Lei
2021-06-11 13:54 ` [irqchip: irq/irqchip-next] irqchip/gic-v2m: Remove " irqchip-bot for Zhen Lei

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.