ACPI: thermal: Fix up function header formatting in two places
authorJonathan Bergh <bergh.jonathan@gmail.com>
Thu, 28 Sep 2023 22:13:44 +0000 (00:13 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 3 Oct 2023 18:55:22 +0000 (20:55 +0200)
Fix up the following formatting issues:
 * braces following function declarations should be on a new line
 * empty line should be present between function declarations

Signed-off-by: Jonathan Bergh <bergh.jonathan@gmail.com>
[ rjw: Subject and changelog edits ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/thermal.c

index 17bcf4185fef7e8773b6b0a0fceb30127a8a4501..c01ba4ad800951327547fcfec0643c1eaf030f61 100644 (file)
@@ -1021,7 +1021,8 @@ static struct acpi_driver acpi_thermal_driver = {
        .drv.pm = &acpi_thermal_pm,
 };
 
-static int thermal_act(const struct dmi_system_id *d) {
+static int thermal_act(const struct dmi_system_id *d)
+{
        if (act == 0) {
                pr_notice("%s detected: disabling all active thermal trip points\n",
                          d->ident);
@@ -1029,13 +1030,17 @@ static int thermal_act(const struct dmi_system_id *d) {
        }
        return 0;
 }
-static int thermal_nocrt(const struct dmi_system_id *d) {
+
+static int thermal_nocrt(const struct dmi_system_id *d)
+{
        pr_notice("%s detected: disabling all critical thermal trip point actions.\n",
                  d->ident);
        crt = -1;
        return 0;
 }
-static int thermal_tzp(const struct dmi_system_id *d) {
+
+static int thermal_tzp(const struct dmi_system_id *d)
+{
        if (tzp == 0) {
                pr_notice("%s detected: enabling thermal zone polling\n",
                          d->ident);
@@ -1043,7 +1048,9 @@ static int thermal_tzp(const struct dmi_system_id *d) {
        }
        return 0;
 }
-static int thermal_psv(const struct dmi_system_id *d) {
+
+static int thermal_psv(const struct dmi_system_id *d)
+{
        if (psv == 0) {
                pr_notice("%s detected: disabling all passive thermal trip points\n",
                          d->ident);