Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/external/bsd/drm2 phys_wc_to_mtrr_index got renamed to a...



details:   https://anonhg.NetBSD.org/src/rev/bbf6d1057601
branches:  trunk
changeset: 365808:bbf6d1057601
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Mon Aug 27 06:49:52 2018 +0000

description:
phys_wc_to_mtrr_index got renamed to arch_phys_wc_index upstream.

diffstat:

 sys/external/bsd/drm2/include/linux/io.h      |  4 ++--
 sys/external/bsd/drm2/linux/linux_writecomb.c |  6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diffs (44 lines):

diff -r 27488a2a96d8 -r bbf6d1057601 sys/external/bsd/drm2/include/linux/io.h
--- a/sys/external/bsd/drm2/include/linux/io.h  Mon Aug 27 06:49:42 2018 +0000
+++ b/sys/external/bsd/drm2/include/linux/io.h  Mon Aug 27 06:49:52 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: io.h,v 1.4 2014/07/16 20:59:58 riastradh Exp $ */
+/*     $NetBSD: io.h,v 1.5 2018/08/27 06:49:52 riastradh Exp $ */
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -43,6 +43,6 @@
 
 int    arch_phys_wc_add(unsigned long, unsigned long);
 void   arch_phys_wc_del(int);
-int    phys_wc_to_mtrr_index(int);
+int    arch_phys_wc_index(int);
 
 #endif  /* _LINUX_IO_H_ */
diff -r 27488a2a96d8 -r bbf6d1057601 sys/external/bsd/drm2/linux/linux_writecomb.c
--- a/sys/external/bsd/drm2/linux/linux_writecomb.c     Mon Aug 27 06:49:42 2018 +0000
+++ b/sys/external/bsd/drm2/linux/linux_writecomb.c     Mon Aug 27 06:49:52 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: linux_writecomb.c,v 1.6 2018/08/14 14:53:21 riastradh Exp $    */
+/*     $NetBSD: linux_writecomb.c,v 1.7 2018/08/27 06:49:52 riastradh Exp $    */
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_writecomb.c,v 1.6 2018/08/14 14:53:21 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_writecomb.c,v 1.7 2018/08/27 06:49:52 riastradh Exp $");
 
 #if defined(__i386__) || defined(__x86_64__)
 #define HAS_MTRR 1
@@ -151,7 +151,7 @@
 }
 
 int
-phys_wc_to_mtrr_index(int handle)
+arch_phys_wc_index(int handle)
 {
 
        /* XXX Actually implement this...requires changes to our MTRR API.  */



Home | Main Index | Thread Index | Old Index