--- Begin Message ---
- To: <broonie@xxxxxxxxxx>, <miquel.raynal@xxxxxxxxxxx>, <richard@xxxxxx>, <vigneshr@xxxxxx>, <jic23@xxxxxxxxxx>, <tudor.ambarus@xxxxxxxxxxxxx>, <pratyush@xxxxxxxxxx>, <Sanju.Mehta@xxxxxxx>, <chin-ting_kuo@xxxxxxxxxxxxxx>, <clg@xxxxxxxx>, <kdasu.kdev@xxxxxxxxx>, <f.fainelli@xxxxxxxxx>, <rjui@xxxxxxxxxxxx>, <sbranden@xxxxxxxxxxxx>, <eajames@xxxxxxxxxxxxx>, <olteanv@xxxxxxxxx>, <han.xu@xxxxxxx>, <john.garry@xxxxxxxxxx>, <shawnguo@xxxxxxxxxx>, <s.hauer@xxxxxxxxxxxxxx>, <narmstrong@xxxxxxxxxxxx>, <khilman@xxxxxxxxxxxx>, <matthias.bgg@xxxxxxxxx>, <haibo.chen@xxxxxxx>, <linus.walleij@xxxxxxxxxx>, <daniel@xxxxxxxxxx>, <haojian.zhuang@xxxxxxxxx>, <robert.jarzmik@xxxxxxx>, <agross@xxxxxxxxxx>, <bjorn.andersson@xxxxxxxxxx>, <heiko@xxxxxxxxx>, <krzysztof.kozlowski@xxxxxxxxxx>, <andi@xxxxxxxxxxx>, <mcoquelin.stm32@xxxxxxxxx>, <alexandre.torgue@xxxxxxxxxxx>, <wens@xxxxxxxx>, <jernej.skrabec@xxxxxxxxx>, <samuel@xxxxxxxxxxxx>, <masahisa.kojima@xxxxxxxxxx>, <jaswinder.singh@xxxxxxxxxx>, <rostedt@xxxxxxxxxxx>, <mingo@xxxxxxxxxx>, <l.stelmach@xxxxxxxxxxx>, <davem@xxxxxxxxxxxxx>, <edumazet@xxxxxxxxxx>, <kuba@xxxxxxxxxx>, <pabeni@xxxxxxxxxx>, <alex.aring@xxxxxxxxx>, <stefan@xxxxxxxxxxxxxxxxxx>, <kvalo@xxxxxxxxxx>, <james.schulman@xxxxxxxxxx>, <david.rhodes@xxxxxxxxxx>, <tanureal@xxxxxxxxxxxxxxxxxxxxx>, <rf@xxxxxxxxxxxxxxxxxxxxx>, <perex@xxxxxxxx>, <tiwai@xxxxxxxx>, <npiggin@xxxxxxxxx>, <christophe.leroy@xxxxxxxxxx>, <mpe@xxxxxxxxxxxxxx>, <oss@xxxxxxxxxxxx>, <windhl@xxxxxxx>, <yangyingliang@xxxxxxxxxx>, <william.zhang@xxxxxxxxxxxx>, <kursad.oney@xxxxxxxxxxxx>, <jonas.gorski@xxxxxxxxx>, <anand.gore@xxxxxxxxxxxx>, <rafal@xxxxxxxxxx>
- Subject: [PATCH V6 10/15] mtd: spi-nor: Convert macros with inline functions
- From: Amit Kumar Mahapatra <amit.kumar-mahapatra@xxxxxxx>
- Date: Fri, 10 Mar 2023 23:02:12 +0530
- Cc: git@xxxxxxx, linux-spi@xxxxxxxxxxxxxxx, linux-kernel@xxxxxxxxxxxxxxx, joel@xxxxxxxxx, andrew@xxxxxxxx, radu_nicolae.pirea@xxxxxx, nicolas.ferre@xxxxxxxxxxxxx, alexandre.belloni@xxxxxxxxxxx, claudiu.beznea@xxxxxxxxxxxxx, bcm-kernel-feedback-list@xxxxxxxxxxxx, fancer.lancer@xxxxxxxxx, kernel@xxxxxxxxxxxxxx, festevam@xxxxxxxxx, linux-imx@xxxxxxx, jbrunet@xxxxxxxxxxxx, martin.blumenstingl@xxxxxxxxxxxxxx, avifishman70@xxxxxxxxx, tmaimon77@xxxxxxxxx, tali.perry1@xxxxxxxxx, venture@xxxxxxxxxx, yuenn@xxxxxxxxxx, benjaminfair@xxxxxxxxxx, yogeshgaur.83@xxxxxxxxx, konrad.dybcio@xxxxxxxxxxxxxx, alim.akhtar@xxxxxxxxxxx, ldewangan@xxxxxxxxxx, thierry.reding@xxxxxxxxx, jonathanh@xxxxxxxxxx, michal.simek@xxxxxxx, linux-aspeed@xxxxxxxxxxxxxxxx, openbmc@xxxxxxxxxxxxxxxx, linux-arm-kernel@xxxxxxxxxxxxxxxxxxx, linux-rpi-kernel@xxxxxxxxxxxxxxxxxxx, linux-amlogic@xxxxxxxxxxxxxxxxxxx, linux-mediatek@xxxxxxxxxxxxxxxxxxx, linux-arm-msm@xxxxxxxxxxxxxxx, linux-rockchip@xxxxxxxxxxxxxxxxxxx, linux-samsung-soc@xxxxxxxxxxxxxxx, linux-stm32@xxxxxxxxxxxxxxxxxxxxxxxxxxxx, linux-sunxi@xxxxxxxxxxxxxxx, linux-tegra@xxxxxxxxxxxxxxx, netdev@xxxxxxxxxxxxxxx, linux-wpan@xxxxxxxxxxxxxxx, libertas-dev@xxxxxxxxxxxxxxxxxxx, linux-wireless@xxxxxxxxxxxxxxx, linux-mtd@xxxxxxxxxxxxxxxxxxx, lars@xxxxxxxxxx, Michael.Hennerich@xxxxxxxxxx, linux-iio@xxxxxxxxxxxxxxx, michael@xxxxxxxx, palmer@xxxxxxxxxxx, linux-riscv@xxxxxxxxxxxxxxxxxxx, alsa-devel@xxxxxxxxxxxxxxxx, patches@xxxxxxxxxxxxxxxxxxxxx, linuxppc-dev@xxxxxxxxxxxxxxxx, amitrkcian2002@xxxxxxxxx, amit.kumar-mahapatra@xxxxxxx
- In-reply-to: <20230310173217.3429788-1-amit.kumar-mahapatra@amd.com>
- References: <20230310173217.3429788-1-amit.kumar-mahapatra@amd.com>
In further patches the nor->params references in
spi_nor_otp_region_len(nor) & spi_nor_otp_n_regions(nor) macros will be
replaced with spi_nor_get_params() API. To make the transition smoother,
first converting the macros into static inline functions.
Suggested-by: Michal Simek <michal.simek@xxxxxxx>
Signed-off-by: Amit Kumar Mahapatra <amit.kumar-mahapatra@xxxxxxx>
---
drivers/mtd/spi-nor/otp.c | 23 +++++++++++++++++++++--
1 file changed, 21 insertions(+), 2 deletions(-)
diff --git a/drivers/mtd/spi-nor/otp.c b/drivers/mtd/spi-nor/otp.c
index 00ab0d2d6d2f..3d75899de303 100644
--- a/drivers/mtd/spi-nor/otp.c
+++ b/drivers/mtd/spi-nor/otp.c
@@ -11,8 +11,27 @@
#include "core.h"
-#define spi_nor_otp_region_len(nor) ((nor)->params->otp.org->len)
-#define spi_nor_otp_n_regions(nor) ((nor)->params->otp.org->n_regions)
+/**
+ * spi_nor_otp_region_len() - get size of one OTP region in bytes
+ * @nor: pointer to 'struct spi_nor'
+ *
+ * Return: size of one OTP region in bytes
+ */
+static inline unsigned int spi_nor_otp_region_len(struct spi_nor *nor)
+{
+ return nor->params->otp.org->len;
+}
+
+/**
+ * spi_nor_otp_n_regions() - get number of individual OTP regions
+ * @nor: pointer to 'struct spi_nor'
+ *
+ * Return: number of individual OTP regions
+ */
+static inline unsigned int spi_nor_otp_n_regions(struct spi_nor *nor)
+{
+ return nor->params->otp.org->n_regions;
+}
/**
* spi_nor_otp_read_secr() - read security register
--
2.25.1
--- End Message ---