KBUILD_MODNAME evaulates to "max5432". Replace the hard coded driver name
with KBUILD_MODNAME.
Signed-off-by: Martin Kaiser <[email protected]>
---
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
On Sun, Aug 14, 2022 at 8:15 PM Martin Kaiser <[email protected]> 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