Commit 798682e2 authored by Hans de Goede's avatar Hans de Goede
Browse files

platform/x86: thinkpad_acpi: Properly indent code in tpacpi_dytc_profile_init()



The previous refactoring of some code in tpacpi_dytc_profile_init() left
a weirdly indented code-block behind.

Remove the unnecessary '{}' and reduce the indent level one step,
other then changing the indentation the code is completely unchanged.

Reviewed-by: default avatarAndy Shevchenko <andy.shevchenko@gmail.com>
Tested-by: default avatarMark Pearson <mpearson@lenovo.com>
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20211121191129.256713-6-hdegoede@redhat.com
parent 0b0d2fba
Loading
Loading
Loading
Loading
+23 −24
Original line number Diff line number Diff line
@@ -10095,7 +10095,6 @@ static int tpacpi_dytc_profile_init(struct ibm_init_struct *iibm)
	if (dytc_version < 5)
		return -ENODEV;

	{
	dbg_printk(TPACPI_DBG_INIT,
			"DYTC version %d: thermal mode available\n", dytc_version);
	/*
@@ -10119,7 +10118,7 @@ static int tpacpi_dytc_profile_init(struct ibm_init_struct *iibm)

	/* Ensure initial values are correct */
	dytc_profile_refresh();
	}

	return 0;
}