diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-04-15 17:36:15 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-04-15 17:36:15 +0000 |
commit | 546424a6a97dd2b106d4138d08fda2de02ea5f7e (patch) | |
tree | 53c521649f4a2e7523394fb9ac75430a946ed5c8 | |
parent | dc744a7b588929bc1557cdb4c558e5e5dfe4fd20 (diff) |
Add a dummy device_register() function for now.
-rw-r--r-- | sys/arch/solbourne/solbourne/autoconf.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/solbourne/solbourne/autoconf.c b/sys/arch/solbourne/solbourne/autoconf.c index 336f4c0db9e..5b979f5ac61 100644 --- a/sys/arch/solbourne/solbourne/autoconf.c +++ b/sys/arch/solbourne/solbourne/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.4 2006/03/15 20:20:40 miod Exp $ */ +/* $OpenBSD: autoconf.c,v 1.5 2006/04/15 17:36:14 miod Exp $ */ /* OpenBSD: autoconf.c,v 1.64 2005/03/23 17:10:24 miod Exp */ /* @@ -966,3 +966,8 @@ getdevunit(name, unit) } return dev; } + +void +device_register(struct device *dev, void *aux) +{ +} |