slimbus: fix kerneldoc comments
The kerneldoc comments in drivers/slimbus/stream.c were not properly formatted, leading to a distinctly unsatisfying "no structured comments found" warning in the docs build. Sprinkle some asterisks around so that the comments will be properly recognized. Signed-off-by: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ee3095c194
commit
2f0f2441b4
|
@ -84,7 +84,7 @@ static const int slim_presence_rate_table[] = {
|
||||||
512000,
|
512000,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* slim_stream_allocate() - Allocate a new SLIMbus Stream
|
* slim_stream_allocate() - Allocate a new SLIMbus Stream
|
||||||
* @dev:Slim device to be associated with
|
* @dev:Slim device to be associated with
|
||||||
* @name: name of the stream
|
* @name: name of the stream
|
||||||
|
@ -189,7 +189,7 @@ static int slim_get_prate_code(int rate)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* slim_stream_prepare() - Prepare a SLIMbus Stream
|
* slim_stream_prepare() - Prepare a SLIMbus Stream
|
||||||
*
|
*
|
||||||
* @rt: instance of slim stream runtime to configure
|
* @rt: instance of slim stream runtime to configure
|
||||||
|
@ -336,7 +336,7 @@ static int slim_activate_channel(struct slim_stream_runtime *stream,
|
||||||
return slim_do_transfer(sdev->ctrl, &txn);
|
return slim_do_transfer(sdev->ctrl, &txn);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* slim_stream_enable() - Enable a prepared SLIMbus Stream
|
* slim_stream_enable() - Enable a prepared SLIMbus Stream
|
||||||
*
|
*
|
||||||
* @stream: instance of slim stream runtime to enable
|
* @stream: instance of slim stream runtime to enable
|
||||||
|
@ -389,7 +389,7 @@ int slim_stream_enable(struct slim_stream_runtime *stream)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(slim_stream_enable);
|
EXPORT_SYMBOL_GPL(slim_stream_enable);
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* slim_stream_disable() - Disable a SLIMbus Stream
|
* slim_stream_disable() - Disable a SLIMbus Stream
|
||||||
*
|
*
|
||||||
* @stream: instance of slim stream runtime to disable
|
* @stream: instance of slim stream runtime to disable
|
||||||
|
@ -423,7 +423,7 @@ int slim_stream_disable(struct slim_stream_runtime *stream)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(slim_stream_disable);
|
EXPORT_SYMBOL_GPL(slim_stream_disable);
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* slim_stream_unprepare() - Un-prepare a SLIMbus Stream
|
* slim_stream_unprepare() - Un-prepare a SLIMbus Stream
|
||||||
*
|
*
|
||||||
* @stream: instance of slim stream runtime to unprepare
|
* @stream: instance of slim stream runtime to unprepare
|
||||||
|
@ -449,7 +449,7 @@ int slim_stream_unprepare(struct slim_stream_runtime *stream)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(slim_stream_unprepare);
|
EXPORT_SYMBOL_GPL(slim_stream_unprepare);
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* slim_stream_free() - Free a SLIMbus Stream
|
* slim_stream_free() - Free a SLIMbus Stream
|
||||||
*
|
*
|
||||||
* @stream: instance of slim stream runtime to free
|
* @stream: instance of slim stream runtime to free
|
||||||
|
|
Loading…
Reference in New Issue