Module Name: src
Committed By: riastradh
Date: Sun Dec 19 01:47:49 UTC 2021
Modified Files:
src/sys/external/bsd/drm2/radeon: radeon_pci.c
Log Message:
Extra argument to radeon_suspend_kms now.
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/external/bsd/drm2/radeon/radeon_pci.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/external/bsd/drm2/radeon/radeon_pci.c
diff -u src/sys/external/bsd/drm2/radeon/radeon_pci.c:1.14 src/sys/external/bsd/drm2/radeon/radeon_pci.c:1.15
--- src/sys/external/bsd/drm2/radeon/radeon_pci.c:1.14 Fri Jan 24 11:44:27 2020
+++ src/sys/external/bsd/drm2/radeon/radeon_pci.c Sun Dec 19 01:47:49 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: radeon_pci.c,v 1.14 2020/01/24 11:44:27 jmcneill Exp $ */
+/* $NetBSD: radeon_pci.c,v 1.15 2021/12/19 01:47:49 riastradh Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: radeon_pci.c,v 1.14 2020/01/24 11:44:27 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: radeon_pci.c,v 1.15 2021/12/19 01:47:49 riastradh Exp $");
#ifdef _KERNEL_OPT
#include "vga.h"
@@ -324,7 +324,7 @@ radeon_do_suspend(device_t self, const p
if (dev == NULL)
return true;
- ret = radeon_suspend_kms(dev, true, is_console);
+ ret = radeon_suspend_kms(dev, true, is_console, false);
if (ret)
return false;