projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca0367c
)
drm/nouveau/acpi: Don't print error when we get -EINPROGRESS from pm_runtime
author
Lyude Paul
<lyude@redhat.com>
Thu, 14 Jul 2022 17:42:33 +0000
(13:42 -0400)
committer
Lyude Paul
<lyude@redhat.com>
Thu, 14 Jul 2022 20:38:43 +0000
(16:38 -0400)
Since this isn't actually a failure.
Signed-off-by: Lyude Paul <lyude@redhat.com>
Reviewed-by: David Airlie <airlied@linux.ie>
Fixes:
79e765ad665d
("drm/nouveau/drm/nouveau: Prevent handling ACPI HPD events too early")
Cc: <stable@vger.kernel.org> # v4.19+
Link:
https://patchwork.freedesktop.org/patch/msgid/20220714174234.949259-2-lyude@redhat.com
drivers/gpu/drm/nouveau/nouveau_display.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/nouveau/nouveau_display.c
b/drivers/gpu/drm/nouveau/nouveau_display.c
index
2cd0932
..
9f5a45f
100644
(file)
--- a/
drivers/gpu/drm/nouveau/nouveau_display.c
+++ b/
drivers/gpu/drm/nouveau/nouveau_display.c
@@
-537,7
+537,7
@@
nouveau_display_acpi_ntfy(struct notifier_block *nb, unsigned long val,
* it's own hotplug events.
*/
pm_runtime_put_autosuspend(drm->dev->dev);
- } else if (ret == 0) {
+ } else if (ret == 0
|| ret == -EINPROGRESS
) {
/* We've started resuming the GPU already, so
* it will handle scheduling a full reprobe
* itself