[PATCH] iio: potentiometer: max5432: use KBUILD_MODNAME as driver name

Martin Kaiser posted 1 patch 3 years, 7 months ago
drivers/iio/potentiometer/max5432.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] iio: potentiometer: max5432: use KBUILD_MODNAME as driver name
Posted by Martin Kaiser 3 years, 7 months ago
KBUILD_MODNAME evaulates to "max5432". Replace the hard coded driver name
with KBUILD_MODNAME.

Signed-off-by: Martin Kaiser <martin@kaiser.cx>
---
 drivers/iio/potentiometer/max5432.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/potentiometer/max5432.c b/drivers/iio/potentiometer/max5432.c
index aed3b6ab82a2..a970bf9c99a7 100644
--- a/drivers/iio/potentiometer/max5432.c
+++ b/drivers/iio/potentiometer/max5432.c
@@ -121,7 +121,7 @@ MODULE_DEVICE_TABLE(of, max5432_dt_ids);
 
 static struct i2c_driver max5432_driver = {
 	.driver = {
-		.name = "max5432",
+		.name = KBUILD_MODNAME,
 		.of_match_table = max5432_dt_ids,
 	},
 	.probe = max5432_probe,
-- 
2.30.2
Re: [PATCH] iio: potentiometer: max5432: use KBUILD_MODNAME as driver name
Posted by Andy Shevchenko 3 years, 7 months ago
On Sun, Aug 14, 2022 at 8:15 PM Martin Kaiser <martin@kaiser.cx> wrote:
>
> KBUILD_MODNAME evaulates to "max5432". Replace the hard coded driver name

evaluates

> with KBUILD_MODNAME.

NAK from me on the basis that this is (a loose) part of an ABI and if
somebody relies on it, renaming the module will break this.

-- 
With Best Regards,
Andy Shevchenko