From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH v2] ARM: i.MX9: tqma93xx: workaround warning in variant detection
Date: Wed, 23 Oct 2024 19:05:37 +0200 [thread overview]
Message-ID: <20241023170537.1276908-1-a.fatoum@pengutronix.de> (raw)
Some versions of GCC emit a false positive warning that fdt may be
uninitialized. This can't happen, so tell the compiler that.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
v1 -> v2:
- removed warning and fallthrough to CONNECTOR case. As Sascha
correctly notes, this path is impossible to reach and indeed
new compiler versions don't warn about it, thus just tell the
compiler that it's unreachable.
---
arch/arm/boards/tqma93xx/lowlevel.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/boards/tqma93xx/lowlevel.c b/arch/arm/boards/tqma93xx/lowlevel.c
index 8d89ee530ff8..14733d52a3c3 100644
--- a/arch/arm/boards/tqma93xx/lowlevel.c
+++ b/arch/arm/boards/tqma93xx/lowlevel.c
@@ -92,6 +92,8 @@ static noinline void tqma93xx_continue(void)
case VARD_FORMFACTOR_TYPE_CONNECTOR:
fdt = __dtb_z_imx93_tqma9352_mba93xxca_start;
break;
+ default:
+ __builtin_unreachable();
}
imx93_barebox_entry(fdt);
--
2.39.5
next reply other threads:[~2024-10-23 17:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-23 17:05 Ahmad Fatoum [this message]
2024-10-25 6:33 ` Sascha Hauer
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=20241023170537.1276908-1-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/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