mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-13 20:36:02 +01:00
tools: zynqmp_psu_init_minimize.sh: fix return lines coding style
Remove unneeded parenthess around return value. E.g.: return (0); -> return 0; Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
5456935a1d
commit
7f492f3c11
@ -94,6 +94,9 @@ sed -i 's/^unsigned long /static &/g' ${OUT}
|
|||||||
sed -i 's/()$/(void)/g' ${OUT}
|
sed -i 's/()$/(void)/g' ${OUT}
|
||||||
sed -i 's/0X/0x/g' ${OUT}
|
sed -i 's/0X/0x/g' ${OUT}
|
||||||
|
|
||||||
|
# return (0) -> return 0
|
||||||
|
sed -ri 's/return \(([0-9]+)\)/return \1/g' ${OUT}
|
||||||
|
|
||||||
# Add header
|
# Add header
|
||||||
cat << EOF >${TMP}
|
cat << EOF >${TMP}
|
||||||
// SPDX-License-Identifier: GPL-2.0+
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
Loading…
x
Reference in New Issue
Block a user