diff options
author | Roland McGrath <roland@redhat.com> | 2009-10-14 14:16:38 -0700 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2009-10-14 14:16:38 -0700 |
commit | e9a63a4e559fbdc522072281d05e6b13c1022f4b (patch) | |
tree | 725fa53b311924352faf52bcecc6eef79c3ded1d /arch/x86/kernel/acpi | |
parent | 80f506918fdaaca6b574ba931536a58ce015c7be (diff) |
x86: linker script syntax nits
The linker scripts grew some use of weirdly wrong linker script syntax.
It happens to work, but it's not what the syntax is documented to be.
Clean it up to use the official syntax.
Signed-off-by: Roland McGrath <roland@redhat.com>
CC: Ian Lance Taylor <iant@google.com>
Diffstat (limited to 'arch/x86/kernel/acpi')
-rw-r--r-- | arch/x86/kernel/acpi/realmode/wakeup.lds.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/acpi/realmode/wakeup.lds.S b/arch/x86/kernel/acpi/realmode/wakeup.lds.S index 7da00b799cd..0e50e1e5c57 100644 --- a/arch/x86/kernel/acpi/realmode/wakeup.lds.S +++ b/arch/x86/kernel/acpi/realmode/wakeup.lds.S @@ -56,6 +56,6 @@ SECTIONS /DISCARD/ : { *(.note*) } - - . = ASSERT(_end <= WAKEUP_SIZE, "Wakeup too big!"); } + +ASSERT(_end <= WAKEUP_SIZE, "Wakeup too big!"); |