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>
This commit is contained in:
@@ -140,7 +140,7 @@ static const struct udevice_id bcm283x_mu_serial_id[] = {
|
||||
* The serial device will only work properly if it has been muxed to the serial
|
||||
* pins by firmware. Check whether that happened here.
|
||||
*
|
||||
* @return true if serial device is muxed, false if not
|
||||
* Return: true if serial device is muxed, false if not
|
||||
*/
|
||||
static bool bcm283x_is_serial_muxed(void)
|
||||
{
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
* The serial device will only work properly if it has been muxed to the serial
|
||||
* pins by firmware. Check whether that happened here.
|
||||
*
|
||||
* @return true if serial device is muxed, false if not
|
||||
* Return: true if serial device is muxed, false if not
|
||||
*/
|
||||
static bool bcm283x_is_serial_muxed(void)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user