mfd: intel_soc_pmic_*: Consistently use filename as driver name
authorHans de Goede <hdegoede@redhat.com>
Mon, 4 Nov 2024 15:06:54 +0000 (16:06 +0100)
committerLee Jones <lee@kernel.org>
Tue, 12 Nov 2024 12:15:42 +0000 (12:15 +0000)
Currently the intel_soc_pmic_bxtwc, intel_soc_pmic_chtwc and
intel_soc_pmic_crc PMIC drivers use more or less free form strings
for their driver name.

Where as intel_soc_pmic_chtdc_ti and intel_soc_pmic_mrfld use the driver's
filename as driver name.

Update the 3 others to also use the driver's filename to make the naming
consistent.

Suggested-by: Andy Shevchenko <andy@kernel.org>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20241104150655.41402-2-hdegoede@redhat.com
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/mfd/intel_soc_pmic_bxtwc.c
drivers/mfd/intel_soc_pmic_chtwc.c
drivers/mfd/intel_soc_pmic_crc.c

index cc4056a..9d89171 100644 (file)
@@ -616,7 +616,7 @@ static struct platform_driver bxtwc_driver = {
        .probe = bxtwc_probe,
        .shutdown = bxtwc_shutdown,
        .driver = {
-               .name   = "BXTWC PMIC",
+               .name   = "intel_soc_pmic_bxtwc",
                .pm     = pm_sleep_ptr(&bxtwc_pm_ops),
                .acpi_match_table = bxtwc_acpi_ids,
                .dev_groups = bxtwc_groups,
index 2a83f54..aa71a7d 100644 (file)
@@ -267,7 +267,7 @@ static const struct acpi_device_id cht_wc_acpi_ids[] = {
 
 static struct i2c_driver cht_wc_driver = {
        .driver = {
-               .name   = "CHT Whiskey Cove PMIC",
+               .name   = "intel_soc_pmic_chtwc",
                .pm     = pm_sleep_ptr(&cht_wc_pm_ops),
                .acpi_match_table = cht_wc_acpi_ids,
        },
index 876d017..663a9e9 100644 (file)
@@ -261,7 +261,7 @@ MODULE_DEVICE_TABLE(acpi, crystal_cove_acpi_match);
 
 static struct i2c_driver crystal_cove_i2c_driver = {
        .driver = {
-               .name = "crystal_cove_i2c",
+               .name = "intel_soc_pmic_crc",
                .pm = pm_sleep_ptr(&crystal_cove_pm_ops),
                .acpi_match_table = crystal_cove_acpi_match,
        },