i2c: mpc: remove outdated macro
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Thu, 29 Feb 2024 10:58:13 +0000 (11:58 +0100)
committerAndi Shyti <andi.shyti@kernel.org>
Mon, 4 Mar 2024 22:36:31 +0000 (23:36 +0100)
DRV_NAME was useful back in the days. But here, being used once, it is
only cruft.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Tested-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
drivers/i2c/busses/i2c-mpc.c

index 0b4de9e569baa491956802c1b1d33fd7187b3d66..8d73c0f405ed567ca980331d86ed56eee29d4f53 100644 (file)
@@ -30,8 +30,6 @@
 #include <asm/mpc85xx.h>
 #include <sysdev/fsl_soc.h>
 
-#define DRV_NAME "mpc-i2c"
-
 #define MPC_I2C_CLOCK_LEGACY   0
 #define MPC_I2C_CLOCK_PRESERVE (~0U)
 
@@ -960,7 +958,7 @@ static struct platform_driver mpc_i2c_driver = {
        .probe          = fsl_i2c_probe,
        .remove_new     = fsl_i2c_remove,
        .driver = {
-               .name = DRV_NAME,
+               .name = "mpc-i2c",
                .of_match_table = mpc_i2c_of_match,
                .pm = &mpc_i2c_pm_ops,
        },