diff mbox series

iio: potentiometer: max5432: use KBUILD_MODNAME as driver name

Message ID 20220814170016.479976-1-martin@kaiser.cx (mailing list archive)
State Rejected
Headers show
Series iio: potentiometer: max5432: use KBUILD_MODNAME as driver name | expand

Commit Message

Martin Kaiser Aug. 14, 2022, 5 p.m. UTC
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(-)

Comments

Andy Shevchenko Aug. 14, 2022, 8:10 p.m. UTC | #1
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.
diff mbox series

Patch

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,