From: Russell King - ARM Linux admin <linux@armlinux.org.uk>
To: Markus Elfring <Markus.Elfring@web.de>
Cc: linux-rtc@vger.kernel.org,
linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org,
Alessandro Zummo <a.zummo@towertech.it>,
Alexandre Belloni <alexandre.belloni@bootlin.com>,
Alexandre Torgue <alexandre.torgue@st.com>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
kernel-janitors@vger.kernel.org,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] rtc: stm32: One function call less in stm32_rtc_set_alarm()
Date: Sun, 7 Jul 2019 22:16:38 +0100 [thread overview]
Message-ID: <20190707211638.sehikkear25dffah@shell.armlinux.org.uk> (raw)
In-Reply-To: <f04277da-8a98-473e-2566-ac7846f9f8e1@web.de>
On Fri, Jul 05, 2019 at 10:17:11PM +0200, Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Fri, 5 Jul 2019 22:10:10 +0200
>
> Avoid an extra function call by using a ternary operator instead of
> a conditional statement.
... and a totally pointless use of the ternary operator.
> @@ -519,11 +519,7 @@ static int stm32_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
> /* Write to Alarm register */
> writel_relaxed(alrmar, rtc->base + regs->alrmar);
>
> - if (alrm->enabled)
> - stm32_rtc_alarm_irq_enable(dev, 1);
> - else
> - stm32_rtc_alarm_irq_enable(dev, 0);
> -
> + stm32_rtc_alarm_irq_enable(dev, alrm->enabled ? 1 : 0);
If we look at stm32_rtc_alarm_irq_enable():
static int stm32_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
{
...
if (enabled)
do A;
else
do B;
...
}
alrm->enabled is an unsigned char. So, the above can be simplified to:
stm32_rtc_alarm_irq_enable(dev, alrm->enabled);
without any need what so ever to use the ternary operator.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line in suburbia: sync at 12.1Mbps down 622kbps up
According to speedtest.net: 11.9Mbps down 500kbps up
next prev parent reply other threads:[~2019-07-07 21:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-05 20:17 [PATCH] rtc: stm32: One function call less in stm32_rtc_set_alarm() Markus Elfring
2019-07-07 21:16 ` Russell King - ARM Linux admin [this message]
2019-07-08 8:42 ` [PATCH v2] rtc: stm32: One condition check and " Markus Elfring
2019-07-08 9:12 ` Amelie DELAUNAY
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190707211638.sehikkear25dffah@shell.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=Markus.Elfring@web.de \
--cc=a.zummo@towertech.it \
--cc=alexandre.belloni@bootlin.com \
--cc=alexandre.torgue@st.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rtc@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=mcoquelin.stm32@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).