diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-11-19 00:44:39 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-11-19 00:44:39 +0000 |
commit | 8dbd08a2f09368b00729f0bbea1dd79c01a8a9ad (patch) | |
tree | b01dc2ec649acb551e11cbc79db3553940338122 /sys/arch | |
parent | a87ef2e51ccc232e6f4cca44f44a16bf7b1c8c1d (diff) |
Don't match AOAbase, which is now handled by onyx(4).
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/macppc/dev/aoa.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/macppc/dev/aoa.c b/sys/arch/macppc/dev/aoa.c index c15d8aeb1a8..df6488f7af7 100644 --- a/sys/arch/macppc/dev/aoa.c +++ b/sys/arch/macppc/dev/aoa.c @@ -1,5 +1,5 @@ -/* $OpenBSD: aoa.c,v 1.2 2005/11/05 04:26:22 brad Exp $ */ -/* $Id: aoa.c,v 1.2 2005/11/05 04:26:22 brad Exp $ */ +/* $OpenBSD: aoa.c,v 1.3 2005/11/19 00:44:38 kettenis Exp $ */ +/* $Id: aoa.c,v 1.3 2005/11/19 00:44:38 kettenis Exp $ */ /*- * Copyright (c) 2005 Tsubai Masanari. All rights reserved. @@ -122,8 +122,6 @@ aoa_match(struct device *parent, void *match, void *aux) return (1); if (strcmp(compat, "AOAK2") == 0) return (1); - if (strcmp(compat, "AOAbase") == 0) - return (1); return (0); } |