drm/nouveau/acpi: Don't print error when we get -EINPROGRESS from pm_runtime
authorLyude Paul <lyude@redhat.com>
Thu, 14 Jul 2022 17:42:33 +0000 (13:42 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Aug 2022 12:22:54 +0000 (14:22 +0200)
commit 53c26181950ddc3c8ace3c0939c89e9c4d8deeb9 upstream.

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
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/nouveau/nouveau_display.c

index bee004da906f6d944838dbad79794d105fc5cf01..b8667bdc04ba041bc368e0ab5d5558a9c4a45b54 100644 (file)
@@ -540,7 +540,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