Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ACPI: SPCR: Amend indentation

1) Remove unnecessary blank lines.
2) Reformat one comment for consistency.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Andy Shevchenko and committed by
Rafael J. Wysocki
dcf0c2e0 da30a34a

+3 -6
+3 -6
drivers/acpi/spcr.c
··· 71 71 72 72 /** 73 73 * acpi_parse_spcr() - parse ACPI SPCR table and add preferred console 74 - * 75 74 * @enable_earlycon: set up earlycon for the console specified by the table 76 75 * @enable_console: setup the console specified by the table. 77 76 * ··· 81 82 * 82 83 * When CONFIG_ACPI_SPCR_TABLE is defined, this function should be called 83 84 * from arch initialization code as soon as the DT/ACPI decision is made. 84 - * 85 85 */ 86 86 int __init acpi_parse_spcr(bool enable_earlycon, bool enable_console) 87 87 { ··· 95 97 if (acpi_disabled) 96 98 return -ENODEV; 97 99 98 - status = acpi_get_table(ACPI_SIG_SPCR, 0, 99 - (struct acpi_table_header **)&table); 100 - 100 + status = acpi_get_table(ACPI_SIG_SPCR, 0, (struct acpi_table_header **)&table); 101 101 if (ACPI_FAILURE(status)) 102 102 return -ENOENT; 103 103 ··· 198 202 if (xgene_8250_erratum_present(table)) { 199 203 iotype = "mmio32"; 200 204 201 - /* for xgene v1 and v2 we don't know the clock rate of the 205 + /* 206 + * For xgene v1 and v2 we don't know the clock rate of the 202 207 * UART so don't attempt to change to the baud rate state 203 208 * in the table because driver cannot calculate the dividers 204 209 */