- Delete simple_devprint(), which is meaningless.

- "adpcm" device is gone.
This commit is contained in:
isaki 2002-10-13 12:09:43 +00:00
parent 5179f774f7
commit 626365359b
1 changed files with 8 additions and 18 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: autoconf.c,v 1.34 2002/10/04 01:50:55 thorpej Exp $ */
/* $NetBSD: autoconf.c,v 1.35 2002/10/13 12:09:43 isaki Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman
@ -56,7 +56,6 @@ int mbmatch __P((struct device *, struct cfdata*, void*));
int x68k_config_found __P((struct cfdata *, struct device *,
void *, cfprint_t));
static int simple_devprint __P((void *, const char *));
static struct device *scsi_find __P((dev_t));
static struct device *find_dev_byname __P((const char *));
@ -93,15 +92,6 @@ cpu_rootconf()
setroot(booted_device, booted_partition);
}
/*ARGSUSED*/
static int
simple_devprint(auxp, pnp)
void *auxp;
const char *pnp;
{
return(QUIET);
}
/*
* use config_search to find appropriate device, then call that device
* directly with NULL device variable storage. A device can then
@ -337,11 +327,11 @@ mbattach(pdp, dp, auxp)
void *auxp;
{
printf ("\n");
config_found(dp, "intio" , simple_devprint);
config_found(dp, "grfbus" , simple_devprint);
config_found(dp, "par" , simple_devprint);
config_found(dp, "com" , simple_devprint);
config_found(dp, "com" , simple_devprint);
/* config_found(dp, "adpcm" , simple_devprint); */
config_found(dp, "*" , simple_devprint);
config_found(dp, "intio" , NULL);
config_found(dp, "grfbus" , NULL);
config_found(dp, "par" , NULL);
config_found(dp, "com" , NULL);
config_found(dp, "com" , NULL);
config_found(dp, "*" , NULL);
}