summaryrefslogtreecommitdiffstats
path: root/arch/mips/lib
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-10-02 12:30:03 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2019-10-14 12:03:30 +0200
commit4cb19a18d05076b63f7679e5b4ba597118a2dfb0 (patch)
treec2bccf841f92a9fabc34868d14d8b816d643561d /arch/mips/lib
parent1e4a948673d709a2f8fcb9229b3cca77f3a25d51 (diff)
downloadbarebox-4cb19a18d05076b63f7679e5b4ba597118a2dfb0.tar.gz
barebox-4cb19a18d05076b63f7679e5b4ba597118a2dfb0.tar.xz
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 <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/mips/lib')
-rw-r--r--arch/mips/lib/barebox.lds.S4
1 files changed, 2 insertions, 2 deletions
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) }