Module Name: src
Committed By: riastradh
Date: Sun Dec 19 09:56:17 UTC 2021
Modified Files:
src/sys/external/bsd/drm2/radeon: radeon_module.c radeon_pci.c
Log Message:
shuffle includes (after changes to drmP.h)
Author: Maya Rashish <[email protected]>
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/external/bsd/drm2/radeon/radeon_module.c
cvs rdiff -u -r1.15 -r1.16 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_module.c
diff -u src/sys/external/bsd/drm2/radeon/radeon_module.c:1.5 src/sys/external/bsd/drm2/radeon/radeon_module.c:1.6
--- src/sys/external/bsd/drm2/radeon/radeon_module.c:1.5 Tue Aug 28 03:35:08 2018
+++ src/sys/external/bsd/drm2/radeon/radeon_module.c Sun Dec 19 09:56:17 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: radeon_module.c,v 1.5 2018/08/28 03:35:08 riastradh Exp $ */
+/* $NetBSD: radeon_module.c,v 1.6 2021/12/19 09:56:17 riastradh Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: radeon_module.c,v 1.5 2018/08/28 03:35:08 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: radeon_module.c,v 1.6 2021/12/19 09:56:17 riastradh Exp $");
#include <sys/types.h>
#include <sys/module.h>
@@ -40,6 +40,7 @@ __KERNEL_RCSID(0, "$NetBSD: radeon_modul
#include <sys/systm.h>
#include <drm/drmP.h>
+#include <drm/drm_drv.h>
#include <drm/drm_sysctl.h>
#include "radeon_drv.h"
Index: src/sys/external/bsd/drm2/radeon/radeon_pci.c
diff -u src/sys/external/bsd/drm2/radeon/radeon_pci.c:1.15 src/sys/external/bsd/drm2/radeon/radeon_pci.c:1.16
--- src/sys/external/bsd/drm2/radeon/radeon_pci.c:1.15 Sun Dec 19 01:47:49 2021
+++ src/sys/external/bsd/drm2/radeon/radeon_pci.c Sun Dec 19 09:56:17 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: radeon_pci.c,v 1.15 2021/12/19 01:47:49 riastradh Exp $ */
+/* $NetBSD: radeon_pci.c,v 1.16 2021/12/19 09:56:17 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.15 2021/12/19 01:47:49 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: radeon_pci.c,v 1.16 2021/12/19 09:56:17 riastradh Exp $");
#ifdef _KERNEL_OPT
#include "vga.h"
@@ -67,7 +67,7 @@ __KERNEL_RCSID(0, "$NetBSD: radeon_pci.c
#include <dev/fdt/fdtvar.h>
#endif
-#include <drm/drmP.h>
+#include <drm/drm_pci.h>
#include <drm/drm_fb_helper.h>
#include <radeon.h>