diff options
author | Hanjun Guo <[email protected]> | 2017-03-07 20:39:56 +0800 |
---|---|---|
committer | Lorenzo Pieralisi <[email protected]> | 2017-03-21 18:09:51 +0000 |
commit | d89cf2e4182603a04e34bdf5622b21a287986bea (patch) | |
tree | 298b17cff95e20f2c9f71d7c48a94e4da2c63b7b | |
parent | 97da3854c526d3a6ee05c849c96e48d21527606c (diff) |
ACPI/IORT: Fix the indentation in iort_scan_node()
The indentation in the iort_scan_node() function is wrong, fix it.
Signed-off-by: Hanjun Guo <[email protected]>
[[email protected]: massaged commit log]
Signed-off-by: Lorenzo Pieralisi <[email protected]>
Tested-by: Ming Lei <[email protected]>
Tested-by: Wei Xu <[email protected]>
Tested-by: Sinan Kaya <[email protected]>
-rw-r--r-- | drivers/acpi/arm64/iort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/arm64/iort.c b/drivers/acpi/arm64/iort.c index 4a5bb967250b..2e368a6aebda 100644 --- a/drivers/acpi/arm64/iort.c +++ b/drivers/acpi/arm64/iort.c @@ -225,7 +225,7 @@ static struct acpi_iort_node *iort_scan_node(enum acpi_iort_node_type type, if (iort_node->type == type && ACPI_SUCCESS(callback(iort_node, context))) - return iort_node; + return iort_node; iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort_node, iort_node->length); |