tools: zynqmp_psu_init_minimize: Move helper functions below header includes
Move helper functions below header includes to avoid forward declarations. Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Link: https://lore.kernel.org/r/20220620163650.18756-14-stefan.herbrechtsmeier-oss@weidmueller.com Signed-off-by: Michal Simek <michal.simek@amd.com>
This commit is contained in:
parent
4d8f2bb151
commit
d2162549fe
@ -143,6 +143,14 @@ sed -i -r 's| \{(\r[^\r]*;)\r\t*\}|\1|g' ${TMP}
|
|||||||
# if ((p_code >= 0x26) && ...) -> if (p_code >= 0x26 && ...)
|
# if ((p_code >= 0x26) && ...) -> if (p_code >= 0x26 && ...)
|
||||||
sed -i -r 's|\((._code .= [x[:xdigit:]]+)\)|\1|g' ${TMP}
|
sed -i -r 's|\((._code .= [x[:xdigit:]]+)\)|\1|g' ${TMP}
|
||||||
|
|
||||||
|
# Move helper functions below header includes
|
||||||
|
TARGET="#include <xil_io.h>"
|
||||||
|
START="static int serdes_rst_seq"
|
||||||
|
END="static int serdes_enb_coarse_saturation"
|
||||||
|
|
||||||
|
sed -i -e "s|\(${TARGET}\r\r\)\(.*\)\(${START}(.*\)\(${END}(\)|\1\3\2\4|g" \
|
||||||
|
${TMP}
|
||||||
|
|
||||||
# Convert back newlines
|
# Convert back newlines
|
||||||
tr "\r" "\n" <${TMP} >${OUT}
|
tr "\r" "\n" <${TMP} >${OUT}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user