console: ipm_console_sender: fix function naming camel case
Should be console_out not consoleOut. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
This commit is contained in:
parent
e466efaf74
commit
f1a639ca9f
1 changed files with 3 additions and 3 deletions
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
static const struct device *ipm_console_device;
|
||||
|
||||
static int consoleOut(int character)
|
||||
static int console_out(int character)
|
||||
{
|
||||
if (character == '\r') {
|
||||
return character;
|
||||
|
|
@ -46,10 +46,10 @@ int ipm_console_sender_init(const struct device *d)
|
|||
}
|
||||
|
||||
if (config_info->flags & IPM_CONSOLE_STDOUT) {
|
||||
__stdout_hook_install(consoleOut);
|
||||
__stdout_hook_install(console_out);
|
||||
}
|
||||
if (config_info->flags & IPM_CONSOLE_PRINTK) {
|
||||
__printk_hook_install(consoleOut);
|
||||
__printk_hook_install(console_out);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue