[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <162341967047.19906.15413637705106849995.tip-bot2@tip-bot2>
Date: Fri, 11 Jun 2021 13:54:30 -0000
From: "irqchip-bot for Zhen Lei" <tip-bot2@...utronix.de>
To: linux-kernel@...r.kernel.org
Cc: Zhen Lei <thunder.leizhen@...wei.com>,
Marc Zyngier <maz@...nel.org>, tglx@...utronix.de
Subject: [irqchip: irq/irqchip-next] irqchip/sun4i: Remove unnecessary oom message
The following commit has been merged into the irq/irqchip-next branch of irqchip:
Commit-ID: 75768e391f8947ea8b2e7997af68dbd68814f00c
Gitweb: https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms/75768e391f8947ea8b2e7997af68dbd68814f00c
Author: Zhen Lei <thunder.leizhen@...wei.com>
AuthorDate: Wed, 09 Jun 2021 22:14:28 +08:00
Committer: Marc Zyngier <maz@...nel.org>
CommitterDate: Fri, 11 Jun 2021 14:19:51 +01:00
irqchip/sun4i: 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@...wei.com>
Signed-off-by: Marc Zyngier <maz@...nel.org>
Link: https://lore.kernel.org/r/20210609141428.14737-1-thunder.leizhen@huawei.com
---
drivers/irqchip/irq-sun4i.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/drivers/irqchip/irq-sun4i.c b/drivers/irqchip/irq-sun4i.c
index 9ea9445..8a315d6 100644
--- a/drivers/irqchip/irq-sun4i.c
+++ b/drivers/irqchip/irq-sun4i.c
@@ -147,10 +147,8 @@ static int __init sun4i_ic_of_init(struct device_node *node,
struct device_node *parent)
{
irq_ic_data = kzalloc(sizeof(struct sun4i_irq_chip_data), GFP_KERNEL);
- if (!irq_ic_data) {
- pr_err("kzalloc failed!\n");
+ if (!irq_ic_data)
return -ENOMEM;
- }
irq_ic_data->enable_reg_offset = SUN4I_IRQ_ENABLE_REG_OFFSET;
irq_ic_data->mask_reg_offset = SUN4I_IRQ_MASK_REG_OFFSET;
@@ -164,10 +162,8 @@ static int __init suniv_ic_of_init(struct device_node *node,
struct device_node *parent)
{
irq_ic_data = kzalloc(sizeof(struct sun4i_irq_chip_data), GFP_KERNEL);
- if (!irq_ic_data) {
- pr_err("kzalloc failed!\n");
+ if (!irq_ic_data)
return -ENOMEM;
- }
irq_ic_data->enable_reg_offset = SUNIV_IRQ_ENABLE_REG_OFFSET;
irq_ic_data->mask_reg_offset = SUNIV_IRQ_MASK_REG_OFFSET;
Powered by blists - more mailing lists