Commit c774ce66 authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/secboot: fix missing newline in error messages

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 8d2c1e33
...@@ -853,7 +853,7 @@ acr_r352_shutdown(struct acr_r352 *acr, struct nvkm_secboot *sb) ...@@ -853,7 +853,7 @@ acr_r352_shutdown(struct acr_r352 *acr, struct nvkm_secboot *sb)
* and the expected behavior on RM as well * and the expected behavior on RM as well
*/ */
if (ret && ret != 0x1d) { if (ret && ret != 0x1d) {
nvkm_error(subdev, "HS unload failed, ret 0x%08x", ret); nvkm_error(subdev, "HS unload failed, ret 0x%08x\n", ret);
return -EINVAL; return -EINVAL;
} }
nvkm_debug(subdev, "HS unload blob completed\n"); nvkm_debug(subdev, "HS unload blob completed\n");
...@@ -922,7 +922,7 @@ acr_r352_bootstrap(struct acr_r352 *acr, struct nvkm_secboot *sb) ...@@ -922,7 +922,7 @@ acr_r352_bootstrap(struct acr_r352 *acr, struct nvkm_secboot *sb)
if (ret < 0) { if (ret < 0) {
return ret; return ret;
} else if (ret > 0) { } else if (ret > 0) {
nvkm_error(subdev, "HS load failed, ret 0x%08x", ret); nvkm_error(subdev, "HS load failed, ret 0x%08x\n", ret);
return -EINVAL; return -EINVAL;
} }
nvkm_debug(subdev, "HS load blob completed\n"); nvkm_debug(subdev, "HS load blob completed\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment