From 4cb19a18d05076b63f7679e5b4ba597118a2dfb0 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 2 Oct 2019 12:30:03 +0200 Subject: barebox.lds: Remove unnecessary braces The BAREBOX_CLK_TABLE and BAREBOX_DTB macros are defines that do not take a parameter, so we can remove the braces. Signed-off-by: Sascha Hauer --- arch/mips/lib/barebox.lds.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/mips/lib') diff --git a/arch/mips/lib/barebox.lds.S b/arch/mips/lib/barebox.lds.S index 58b0c5919d..7109d73372 100644 --- a/arch/mips/lib/barebox.lds.S +++ b/arch/mips/lib/barebox.lds.S @@ -76,9 +76,9 @@ SECTIONS .pci_fixup_enable : { KEEP(*(.pci_fixup_enable)) } __end_pci_fixups_enable = .; #endif - .oftables : { BAREBOX_CLK_TABLE() } + .oftables : { BAREBOX_CLK_TABLE } - .dtb : { BAREBOX_DTB() } + .dtb : { BAREBOX_DTB } _edata = .; .image_end : { *(.__image_end) } -- cgit v1.2.3