diff options
author | 2010-02-19 15:00:12 +0000 | |
---|---|---|
committer | 2010-02-19 15:00:12 +0000 | |
commit | 38a2dd18d93c4831fa6cb13a5c572279b8dc348c (patch) | |
tree | f4cab653a363563818c6acfc52a68c0f6b787bf4 | |
parent | Add a datasheet URL for reference. (diff) | |
download | wireguard-openbsd-38a2dd18d93c4831fa6cb13a5c572279b8dc348c.tar.xz wireguard-openbsd-38a2dd18d93c4831fa6cb13a5c572279b8dc348c.zip |
Move auglx(4) from i386-only land to MI land.
(auglx.c is not modified in this commit yet, only moved around)
Diffstat (limited to '')
-rw-r--r-- | sys/arch/i386/conf/files.i386 | 7 | ||||
-rw-r--r-- | sys/dev/pci/auglx.c (renamed from sys/arch/i386/pci/auglx.c) | 2 | ||||
-rw-r--r-- | sys/dev/pci/files.pci | 7 |
3 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/i386/conf/files.i386 b/sys/arch/i386/conf/files.i386 index e9005bc24e7..157b160180e 100644 --- a/sys/arch/i386/conf/files.i386 +++ b/sys/arch/i386/conf/files.i386 @@ -1,4 +1,4 @@ -# $OpenBSD: files.i386,v 1.194 2009/11/26 21:15:48 deraadt Exp $ +# $OpenBSD: files.i386,v 1.195 2010/02/19 15:00:12 miod Exp $ # # new style config file for i386 architecture # @@ -150,11 +150,6 @@ device amdmsr attach amdmsr at mainbus file arch/i386/i386/amdmsr.c amdmsr needs-flag -# AMD Geode CS5536 Audio -device auglx: audio -attach auglx at pci -file arch/i386/pci/auglx.c auglx - # PCI-ISA bridge chipsets device pcib: isabus attach pcib at pci diff --git a/sys/arch/i386/pci/auglx.c b/sys/dev/pci/auglx.c index 6dbe9e0388b..452c32e405d 100644 --- a/sys/arch/i386/pci/auglx.c +++ b/sys/dev/pci/auglx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auglx.c,v 1.4 2009/01/13 19:44:20 grange Exp $ */ +/* $OpenBSD: auglx.c,v 1.1 2010/02/19 15:00:15 miod Exp $ */ /* * Copyright (c) 2008 Marc Balmer <mbalmer@openbsd.org> diff --git a/sys/dev/pci/files.pci b/sys/dev/pci/files.pci index 2648aa63036..629f508eca3 100644 --- a/sys/dev/pci/files.pci +++ b/sys/dev/pci/files.pci @@ -1,4 +1,4 @@ -# $OpenBSD: files.pci,v 1.267 2009/11/25 13:28:13 dms Exp $ +# $OpenBSD: files.pci,v 1.268 2010/02/19 15:00:15 miod Exp $ # $NetBSD: files.pci,v 1.20 1996/09/24 17:47:15 christos Exp $ # # Config file and device description for machine-independent PCI code. @@ -795,3 +795,8 @@ device gcu attach gcu at pci file dev/pci/gcu.c gcu +# AMD Geode CS5536 Audio +device auglx: audio, ac97 +attach auglx at pci +file dev/pci/auglx.c auglx + |