Heinrich Schuchardt
185f812c41
doc: replace @return by Return:
...
Sphinx expects Return: and not @return to indicate a return value.
find . -name '*.c' -exec \
sed -i 's/^\(\s\)\*\(\s*\)@return\(\s\)/\1*\2Return:\3/' {} \;
find . -name '*.h' -exec \
sed -i 's/^\(\s\)\*\(\s*\)@return\(\s\)/\1*\2Return:\3/' {} \;
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com >
2022-01-19 18:11:34 +01:00
Stefan Roese
84287f9f6f
mips: octeon: cvmx-coremask.h: Fix cvmx_coremask_dprint() with DEBUG defined
...
As DEBUG is no Kconfig symbol, we can't use the IS_ENABLED() macros.
This patch switches to the unfortunately necessary #ifdef usage again
to make it work correctly.
Signed-off-by: Stefan Roese <sr@denx.de >
2021-04-23 21:22:55 +02:00
Aaron Williams
b0ce80588d
mips: octeon: Add coremask support
...
This patch adds the coremask handling functions.
Signed-off-by: Aaron Williams <awilliams@marvell.com >
Signed-off-by: Stefan Roese <sr@denx.de >
2020-10-07 20:25:58 +02:00