logging: remove return value from log_printk()

printk() doesn't return a value, this doesn't need to
either.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2019-09-22 17:02:45 -07:00 committed by Anas Nashif
commit d6d3f152b3
2 changed files with 5 additions and 11 deletions

View file

@ -257,10 +257,8 @@ extern "C" {
*
* @param fmt Formatted string to output.
* @param ap Variable parameters.
*
* return Number of bytes written.
*/
int log_printk(const char *fmt, va_list ap);
void log_printk(const char *fmt, va_list ap);
/** @brief Copy transient string to a buffer from internal, logger pool.
*