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>
This commit is contained in:
Andy Shevchenko 2023-03-27 16:25:12 +03:00 committed by Rafael J. Wysocki
parent da30a34a0e
commit dcf0c2e06a

View file

@ -71,7 +71,6 @@ static bool xgene_8250_erratum_present(struct acpi_table_spcr *tb)
/** /**
* acpi_parse_spcr() - parse ACPI SPCR table and add preferred console * acpi_parse_spcr() - parse ACPI SPCR table and add preferred console
*
* @enable_earlycon: set up earlycon for the console specified by the table * @enable_earlycon: set up earlycon for the console specified by the table
* @enable_console: setup the console specified by the table. * @enable_console: setup the console specified by the table.
* *
@ -82,7 +81,6 @@ static bool xgene_8250_erratum_present(struct acpi_table_spcr *tb)
* *
* When CONFIG_ACPI_SPCR_TABLE is defined, this function should be called * When CONFIG_ACPI_SPCR_TABLE is defined, this function should be called
* from arch initialization code as soon as the DT/ACPI decision is made. * from arch initialization code as soon as the DT/ACPI decision is made.
*
*/ */
int __init acpi_parse_spcr(bool enable_earlycon, bool enable_console) int __init acpi_parse_spcr(bool enable_earlycon, bool enable_console)
{ {
@ -97,9 +95,7 @@ int __init acpi_parse_spcr(bool enable_earlycon, bool enable_console)
if (acpi_disabled) if (acpi_disabled)
return -ENODEV; return -ENODEV;
status = acpi_get_table(ACPI_SIG_SPCR, 0, status = acpi_get_table(ACPI_SIG_SPCR, 0, (struct acpi_table_header **)&table);
(struct acpi_table_header **)&table);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
return -ENOENT; return -ENOENT;
@ -202,7 +198,8 @@ int __init acpi_parse_spcr(bool enable_earlycon, bool enable_console)
if (xgene_8250_erratum_present(table)) { if (xgene_8250_erratum_present(table)) {
iotype = "mmio32"; iotype = "mmio32";
/* for xgene v1 and v2 we don't know the clock rate of the /*
* For xgene v1 and v2 we don't know the clock rate of the
* UART so don't attempt to change to the baud rate state * UART so don't attempt to change to the baud rate state
* in the table because driver cannot calculate the dividers * in the table because driver cannot calculate the dividers
*/ */