summaryrefslogtreecommitdiffstats
path: root/drivers/acpi/pmic/intel_pmic_crc.c
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2018-01-09 22:26:58 +0200
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2018-01-11 02:17:41 +0100
commit0d154fddd658ce7b1f89897c99f7b675a6531423 (patch)
tree652e18635e4ec28a76c5aa24e72080daf971f3bd /drivers/acpi/pmic/intel_pmic_crc.c
parente8894f5578d62f7137a3c4139945e61148728471 (diff)
ACPI / PMIC: Convert to use builtin_platform_driver() macro
All of PMIC OpRegion drivers can't be modules, thus, convert them to use builtin_platform_driver() macro and remove redundant MODULE_*() macros. No functional change intended. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/pmic/intel_pmic_crc.c')
-rw-r--r--drivers/acpi/pmic/intel_pmic_crc.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/acpi/pmic/intel_pmic_crc.c b/drivers/acpi/pmic/intel_pmic_crc.c
index d7f1761ab1bc..7ffa74048107 100644
--- a/drivers/acpi/pmic/intel_pmic_crc.c
+++ b/drivers/acpi/pmic/intel_pmic_crc.c
@@ -201,9 +201,4 @@ static struct platform_driver intel_crc_pmic_opregion_driver = {
.name = "crystal_cove_pmic",
},
};
-
-static int __init intel_crc_pmic_opregion_driver_init(void)
-{
- return platform_driver_register(&intel_crc_pmic_opregion_driver);
-}
-device_initcall(intel_crc_pmic_opregion_driver_init);
+builtin_platform_driver(intel_crc_pmic_opregion_driver);