All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christian Marangi <ansuelsmth@gmail.com>
To: Mark Kettenis <kettenis@openbsd.org>,
	Tom Rini <trini@konsulko.com>, Lukasz Majewski <lukma@denx.de>,
	Sean Anderson <seanga2@gmail.com>,
	Casey Connolly <casey.connolly@linaro.org>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Sumit Garg <sumit.garg@kernel.org>,
	Dario Binacchi <dario.binacchi@amarulasolutions.com>,
	Michael Trimarchi <michael@amarulasolutions.com>,
	Frieder Schrempf <frieder.schrempf@kontron.de>,
	Simon Glass <sjg@chromium.org>,
	Christian Marangi <ansuelsmth@gmail.com>,
	u-boot@lists.denx.de, u-boot-qcom@groups.io
Subject: [PATCH v4 3/5] arm: apple: rtkit: add missing header linux/bug.h and linux/bitops.h
Date: Sat,  7 Jun 2025 23:11:19 +0200	[thread overview]
Message-ID: <20250607211133.2005-4-ansuelsmth@gmail.com> (raw)
In-Reply-To: <20250607211133.2005-1-ansuelsmth@gmail.com>

The GENMASK/GENMASK_ULL macro requires inclusion of linux/bitops.h
header. It does currently work as bitfield.h includes it indirectly
but this will change when bitfield.h will be synced with new Linux
version.

Also raw printf require linux/bug.h header (also currently included
indirectly by bitfield.h)

Explicitly include the headers to fix future compilation error.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
---
 arch/arm/mach-apple/rtkit.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/mach-apple/rtkit.c b/arch/arm/mach-apple/rtkit.c
index f3561543a35..251c6056cbd 100644
--- a/arch/arm/mach-apple/rtkit.c
+++ b/arch/arm/mach-apple/rtkit.c
@@ -9,7 +9,9 @@
 
 #include <asm/arch/rtkit.h>
 #include <linux/apple-mailbox.h>
+#include <linux/bug.h>
 #include <linux/bitfield.h>
+#include <linux/bitops.h>
 #include <linux/errno.h>
 #include <linux/sizes.h>
 #include <linux/types.h>
-- 
2.48.1


  parent reply	other threads:[~2025-06-07 21:12 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-07 21:11 [PATCH v4 0/5] linux/bitfield.h: sync <linux/bitfield.h> from Linux 6.15 + winbond Christian Marangi
2025-06-07 21:11 ` [PATCH v4 1/5] clk: imx: add missing linux/bug.h header for WARN Christian Marangi
2025-06-07 21:11 ` [PATCH v4 2/5] iommu: qcom-smmu: add missing linux/bug.h header for WARN_ON Christian Marangi
2025-06-07 21:11 ` Christian Marangi [this message]
2025-06-07 21:11 ` [PATCH v4 4/5] linux/bitfield.h: sync <linux/bitfield.h> from Linux 6.15 Christian Marangi
2025-06-07 21:11 ` [PATCH v4 5/5] mtd: spinand: winbond: add Winbond W25N04KV flash support Christian Marangi
2025-06-14 17:44 ` [PATCH v4 0/5] linux/bitfield.h: sync <linux/bitfield.h> from Linux 6.15 + winbond Tom Rini

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=20250607211133.2005-4-ansuelsmth@gmail.com \
    --to=ansuelsmth@gmail.com \
    --cc=casey.connolly@linaro.org \
    --cc=dario.binacchi@amarulasolutions.com \
    --cc=frieder.schrempf@kontron.de \
    --cc=kettenis@openbsd.org \
    --cc=lukma@denx.de \
    --cc=michael@amarulasolutions.com \
    --cc=neil.armstrong@linaro.org \
    --cc=seanga2@gmail.com \
    --cc=sjg@chromium.org \
    --cc=sumit.garg@kernel.org \
    --cc=trini@konsulko.com \
    --cc=u-boot-qcom@groups.io \
    --cc=u-boot@lists.denx.de \
    /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 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.