Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions samples/tmo_shell/src/tmo_ble_demo.c
Original file line number Diff line number Diff line change
Expand Up @@ -879,9 +879,8 @@ static struct bt_conn_cb conn_callbacks = {
.connected = ble_connected,
};

static int tmo_ble_demo_init(const struct device *unused)
static int tmo_ble_demo_init()
{
ARG_UNUSED(unused);
int err;

err = bt_enable(NULL);
Expand Down
4 changes: 1 addition & 3 deletions samples/tmo_shell/src/tmo_wifi.c
Original file line number Diff line number Diff line change
Expand Up @@ -485,10 +485,8 @@ int tmo_wifi_connect()
return ret;
}

static int tmo_wifi_shell_init(const struct device *unused)
static int tmo_wifi_shell_init()
{
ARG_UNUSED(unused);

context.shell = NULL;
context.all = 0U;
scan_result = 0U;
Expand Down