diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-03-21 17:26:40 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-03-21 17:26:40 +0000 |
commit | e00571939f85829ae561001db340acf4c46ea2f5 (patch) | |
tree | f607863c3bad777b502c385887fe2c64ad9a23dd /sys/arch/alpha | |
parent | 907f4a5d683e8767742bbddfc156194f3a3d2f53 (diff) |
Move files from common to dev to be more like other archs
(and so that tab completion on "compile" works as on other archs. :))
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/conf/files.alpha | 6 | ||||
-rw-r--r-- | sys/arch/alpha/dev/bus_dma.c (renamed from sys/arch/alpha/common/bus_dma.c) | 2 | ||||
-rw-r--r-- | sys/arch/alpha/dev/sgmap_common.c (renamed from sys/arch/alpha/common/sgmap_common.c) | 4 | ||||
-rw-r--r-- | sys/arch/alpha/dev/sgmap_typedep.c (renamed from sys/arch/alpha/common/sgmap_typedep.c) | 2 | ||||
-rw-r--r-- | sys/arch/alpha/dev/sgmap_typedep.h (renamed from sys/arch/alpha/common/sgmap_typedep.h) | 2 | ||||
-rw-r--r-- | sys/arch/alpha/dev/sgmapvar.h (renamed from sys/arch/alpha/common/sgmapvar.h) | 2 | ||||
-rw-r--r-- | sys/arch/alpha/pci/pci_sgmap_pte64.c | 4 | ||||
-rw-r--r-- | sys/arch/alpha/pci/pci_sgmap_pte64.h | 6 |
8 files changed, 14 insertions, 14 deletions
diff --git a/sys/arch/alpha/conf/files.alpha b/sys/arch/alpha/conf/files.alpha index 87d418781d9..8795ac9080a 100644 --- a/sys/arch/alpha/conf/files.alpha +++ b/sys/arch/alpha/conf/files.alpha @@ -1,4 +1,4 @@ -# $OpenBSD: files.alpha,v 1.45 2001/03/18 04:39:07 nate Exp $ +# $OpenBSD: files.alpha,v 1.46 2001/03/21 17:26:38 art Exp $ # $NetBSD: files.alpha,v 1.32 1996/11/25 04:03:21 cgd Exp $ # # alpha-specific configuration info @@ -14,7 +14,7 @@ file arch/alpha/dev/shared_intr.c alpha_shared_intr | dec_eb164 | dec_kn20aa | dec_6600 | dec_550 define alpha_sgmap -file arch/alpha/common/sgmap_common.c alpha_sgmap | dec_3000_500 +file arch/alpha/dev/sgmap_common.c alpha_sgmap | dec_3000_500 # # Bus-independent devices @@ -262,7 +262,7 @@ file arch/alpha/alpha/sys_machdep.c file arch/alpha/alpha/trap.c file arch/alpha/alpha/vm_machdep.c file arch/alpha/alpha/disksubr.c -file arch/alpha/common/bus_dma.c +file arch/alpha/dev/bus_dma.c file dev/clock_subr.c file dev/cons.c diff --git a/sys/arch/alpha/common/bus_dma.c b/sys/arch/alpha/dev/bus_dma.c index bf6f95c9ed3..0b6eb960e2f 100644 --- a/sys/arch/alpha/common/bus_dma.c +++ b/sys/arch/alpha/dev/bus_dma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bus_dma.c,v 1.2 2000/11/08 21:27:09 ericj Exp $ */ +/* $OpenBSD: bus_dma.c,v 1.1 2001/03/21 17:26:38 art Exp $ */ /* $NetBSD: bus_dma.c,v 1.40 2000/07/17 04:47:56 thorpej Exp $ */ /*- diff --git a/sys/arch/alpha/common/sgmap_common.c b/sys/arch/alpha/dev/sgmap_common.c index ff3f9740160..45867565d44 100644 --- a/sys/arch/alpha/common/sgmap_common.c +++ b/sys/arch/alpha/dev/sgmap_common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sgmap_common.c,v 1.2 2000/11/08 21:27:10 ericj Exp $ */ +/* $OpenBSD: sgmap_common.c,v 1.1 2001/03/21 17:26:38 art Exp $ */ /* $NetBSD: sgmap_common.c,v 1.13 2000/06/29 09:02:57 mrg Exp $ */ /*- @@ -49,7 +49,7 @@ #include <machine/bus.h> -#include <alpha/common/sgmapvar.h> +#include <alpha/dev/sgmapvar.h> /* * Some systems will prefetch the next page during a memory -> device DMA. diff --git a/sys/arch/alpha/common/sgmap_typedep.c b/sys/arch/alpha/dev/sgmap_typedep.c index 9ff47606354..54e292ec50b 100644 --- a/sys/arch/alpha/common/sgmap_typedep.c +++ b/sys/arch/alpha/dev/sgmap_typedep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sgmap_typedep.c,v 1.2 2000/11/08 21:27:11 ericj Exp $ */ +/* $OpenBSD: sgmap_typedep.c,v 1.1 2001/03/21 17:26:38 art Exp $ */ /* $NetBSD: sgmap_typedep.c,v 1.13 1999/07/08 18:05:23 thorpej Exp $ */ /*- diff --git a/sys/arch/alpha/common/sgmap_typedep.h b/sys/arch/alpha/dev/sgmap_typedep.h index 5f58198f8ca..692ec524ff0 100644 --- a/sys/arch/alpha/common/sgmap_typedep.h +++ b/sys/arch/alpha/dev/sgmap_typedep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sgmap_typedep.h,v 1.2 2000/11/08 21:27:11 ericj Exp $ */ +/* $OpenBSD: sgmap_typedep.h,v 1.1 2001/03/21 17:26:38 art Exp $ */ /* $NetBSD: sgmap_typedep.h,v 1.4 1998/06/04 01:22:52 thorpej Exp $ */ /*- diff --git a/sys/arch/alpha/common/sgmapvar.h b/sys/arch/alpha/dev/sgmapvar.h index 41ffe70d253..ebdc972a6ea 100644 --- a/sys/arch/alpha/common/sgmapvar.h +++ b/sys/arch/alpha/dev/sgmapvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sgmapvar.h,v 1.2 2000/11/08 21:27:12 ericj Exp $ */ +/* $OpenBSD: sgmapvar.h,v 1.1 2001/03/21 17:26:38 art Exp $ */ /* $NetBSD: sgmapvar.h,v 1.10 1998/08/14 16:50:02 thorpej Exp $ */ /*- diff --git a/sys/arch/alpha/pci/pci_sgmap_pte64.c b/sys/arch/alpha/pci/pci_sgmap_pte64.c index cf838adefbd..325196b4b94 100644 --- a/sys/arch/alpha/pci/pci_sgmap_pte64.c +++ b/sys/arch/alpha/pci/pci_sgmap_pte64.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_sgmap_pte64.c,v 1.2 2000/11/08 20:59:25 ericj Exp $ */ +/* $OpenBSD: pci_sgmap_pte64.c,v 1.3 2001/03/21 17:26:39 art Exp $ */ /* $NetBSD: pci_sgmap_pte64.c,v 1.4 2000/06/29 08:58:49 mrg Exp $ */ /*- @@ -52,4 +52,4 @@ #include <alpha/pci/pci_sgmap_pte64.h> -#include <alpha/common/sgmap_typedep.c> +#include <alpha/dev/sgmap_typedep.c> diff --git a/sys/arch/alpha/pci/pci_sgmap_pte64.h b/sys/arch/alpha/pci/pci_sgmap_pte64.h index a26b0e638f7..78113d355d9 100644 --- a/sys/arch/alpha/pci/pci_sgmap_pte64.h +++ b/sys/arch/alpha/pci/pci_sgmap_pte64.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_sgmap_pte64.h,v 1.2 2000/11/08 20:59:25 ericj Exp $ */ +/* $OpenBSD: pci_sgmap_pte64.h,v 1.3 2001/03/21 17:26:39 art Exp $ */ /* $NetBSD: pci_sgmap_pte64.h,v 1.2 1997/06/06 23:59:29 thorpej Exp $ */ /*- @@ -54,5 +54,5 @@ #define SGPTE_PGADDR_SHIFT 12 #define SGPTE_VALID 0x0000000000000001UL -#include <alpha/common/sgmapvar.h> -#include <alpha/common/sgmap_typedep.h> +#include <alpha/dev/sgmapvar.h> +#include <alpha/dev/sgmap_typedep.h> |