diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-11-08 16:01:27 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-11-08 16:01:27 +0000 |
commit | fd438f5ca0b94ed3d88d133b522e0103dee486b8 (patch) | |
tree | 6d0a5d2c22adef30dd9a9bb3ce9d92ff9ebc024a /sys/arch/alpha/pci/lca.c | |
parent | 979a51167c72e38f0c094528a264a7fccca6d1c5 (diff) |
Merge in big portions of the improvements NetBSD did to their alpha port.
Highlights: UVM, PMAP_NEW, bus_dma (only on some buses for now), new hardware
support, possiblity for ELF, etc, etc. Too much to mention.
This is still work in progress. video consoles might be broken, otherwise
we have basically the same functionality as before plus more.
Diffstat (limited to 'sys/arch/alpha/pci/lca.c')
-rw-r--r-- | sys/arch/alpha/pci/lca.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/pci/lca.c b/sys/arch/alpha/pci/lca.c index 469bbb115e1..a4ccb4473b8 100644 --- a/sys/arch/alpha/pci/lca.c +++ b/sys/arch/alpha/pci/lca.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lca.c,v 1.7 1997/01/24 19:57:41 niklas Exp $ */ +/* $OpenBSD: lca.c,v 1.8 2000/11/08 16:01:19 art Exp $ */ /* $NetBSD: lca.c,v 1.14 1996/12/05 01:39:35 cgd Exp $ */ /* @@ -80,10 +80,10 @@ lcamatch(parent, match, aux) #endif void *aux; { - struct confargs *ca = aux; + struct mainbus_attach_args *ma = aux; /* Make sure that we're looking for a LCA. */ - if (strcmp(ca->ca_name, lca_cd.cd_name) != 0) + if (strcmp(ma->ma_name, lca_cd.cd_name) != 0) return (0); if (lcafound) |