diff options
author | Luis de Bethencourt <luisbg@kernel.org> | 2018-01-23 15:16:08 +0000 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2018-01-23 11:12:28 -0800 |
commit | 7d82c5fa057c813d13e1f828f779727214573723 (patch) | |
tree | ed34cf1895dc91b2bb158fdae3c5c9c1b4e07b8d /arch/arc | |
parent | 8ff3afc159f26e44471e174077e6d16cd2a2bb91 (diff) | |
download | linux-7d82c5fa057c813d13e1f828f779727214573723.tar.bz2 |
ARC: dw2 unwind: Fix trailing semicolon
The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.
Signed-off-by: Luis de Bethencourt <luisbg@kernel.org>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc')
-rw-r--r-- | arch/arc/kernel/unwind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/kernel/unwind.c b/arch/arc/kernel/unwind.c index 333daab7def0..183391d4d33a 100644 --- a/arch/arc/kernel/unwind.c +++ b/arch/arc/kernel/unwind.c @@ -366,7 +366,7 @@ static void init_unwind_hdr(struct unwind_table *table, return; ret_err: - panic("Attention !!! Dwarf FDE parsing errors\n");; + panic("Attention !!! Dwarf FDE parsing errors\n"); } #ifdef CONFIG_MODULES |