Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
linux
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martyn Welch
linux
Commits
c774ce66
Commit
c774ce66
authored
6 years ago
by
Ben Skeggs
Browse files
Options
Downloads
Patches
Plain Diff
drm/nouveau/secboot: fix missing newline in error messages
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
8d2c1e33
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c
+2
-2
2 additions, 2 deletions
drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c
with
2 additions
and
2 deletions
drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c
+
2
−
2
View file @
c774ce66
...
@@ -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
"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment