Skip to content

Commit

Permalink
bridge: devmem: Change log messages to debug
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Jeffery <[email protected]>
  • Loading branch information
amboar committed May 28, 2024
1 parent 13b1f56 commit 2154c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bridge/devmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,12 +237,12 @@ devmem_driver_probe(int argc, char *argv[] __unused)
}

if ((rc = devmem_init(ctx)) < 0) {
loge("failed to initialise devmem bridge: %d\n", rc);
logd("failed to initialise devmem bridge: %d\n", rc);
goto cleanup_ctx;
}

if ((rc = devmem_probe(ctx)) < 0) {
loge("Failed devmem probe: %d\n", rc);
logd("Failed devmem probe: %d\n", rc);
goto destroy_ctx;
}

Expand Down

0 comments on commit 2154c19

Please sign in to comment.