xserver: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Sep 25 14:31:42 UTC 2018


 hw/xfree86/common/compiler.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 6a2ce6c5da9456b97683db6224f38ef3b02cce4b
Author: Ross Burton <ross.burton at intel.com>
Date:   Thu Sep 20 13:21:34 2018 +0100

    compiler.h: only use inx/outx on ARM with glibc
    
    musl only implements inx/outx on x86, so check for __GLIBC__ instead of
    __linux__.
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>

diff --git a/hw/xfree86/common/compiler.h b/hw/xfree86/common/compiler.h
index 7144c6a27..fb53ced80 100644
--- a/hw/xfree86/common/compiler.h
+++ b/hw/xfree86/common/compiler.h
@@ -758,9 +758,9 @@ inl(unsigned short port)
     return xf86ReadMmio32Le((void *) ioBase, port);
 }
 
-#elif defined(__arm__) && defined(__linux__)
+#elif defined(__arm__) && defined(__GLIBC__)
 
-/* for Linux on ARM, we use the LIBC inx/outx routines */
+/* for glibc on ARM, we use the LIBC inx/outx routines */
 /* note that the appropriate setup via "ioperm" needs to be done */
 /*  *before* any inx/outx is done. */
 


More information about the xorg-commit mailing list