Module Name: src
Committed By: riastradh
Date: Sun Dec 19 09:56:10 UTC 2021
Modified Files:
src/sys/external/bsd/drm2/include/linux: mm.h
Log Message:
Define untagged_addr
Author: Maya Rashish <[email protected]>
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/external/bsd/drm2/include/linux/mm.h
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/include/linux/mm.h
diff -u src/sys/external/bsd/drm2/include/linux/mm.h:1.17 src/sys/external/bsd/drm2/include/linux/mm.h:1.18
--- src/sys/external/bsd/drm2/include/linux/mm.h:1.17 Sun Dec 19 01:51:44 2021
+++ src/sys/external/bsd/drm2/include/linux/mm.h Sun Dec 19 09:56:10 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: mm.h,v 1.17 2021/12/19 01:51:44 riastradh Exp $ */
+/* $NetBSD: mm.h,v 1.18 2021/12/19 09:56:10 riastradh Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -51,6 +51,8 @@ struct file;
#define PAGE_ALIGN(x) (((x) + (PAGE_SIZE-1)) & ~(PAGE_SIZE-1))
#define offset_in_page(x) ((x) & (PAGE_SIZE-1))
+#define untagged_addr(x) (x)
+
struct sysinfo {
unsigned long totalram;
unsigned long totalhigh;