Browse Source

ACPI / numa: Fix __init attribute location in slit_valid()

__init belongs after the return type on functions, not before it.

Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Hanjun Guo 12 years ago
parent
commit
40e318563c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/acpi/numa.c

+ 1 - 1
drivers/acpi/numa.c

@@ -159,7 +159,7 @@ acpi_table_print_srat_entry(struct acpi_subtable_header *header)
  * distance than the others.
  * Do some quick checks here and only use the SLIT if it passes.
  */
-static __init int slit_valid(struct acpi_table_slit *slit)
+static int __init slit_valid(struct acpi_table_slit *slit)
 {
 	int i, j;
 	int d = slit->locality_count;