Disable my aggressive power saving changes; they're causing too many
problems.
This commit is contained in:
parent
8937cec96c
commit
ecfb43361d
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: auich.c,v 1.106 2006/04/16 23:07:16 jmcneill Exp $ */
|
||||
/* $NetBSD: auich.c,v 1.107 2006/04/27 12:21:39 jmcneill Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000, 2004, 2005 The NetBSD Foundation, Inc.
|
||||
|
@ -118,7 +118,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: auich.c,v 1.106 2006/04/16 23:07:16 jmcneill Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: auich.c,v 1.107 2006/04/27 12:21:39 jmcneill Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -754,7 +754,9 @@ auich_finish_attach(struct device *self)
|
|||
|
||||
sc->sc_audiodev = audio_attach_mi(&auich_hw_if, sc, &sc->sc_dev);
|
||||
|
||||
#if notyet
|
||||
auich_powerhook(PWR_SUSPEND, sc);
|
||||
#endif
|
||||
|
||||
return;
|
||||
}
|
||||
|
@ -1419,6 +1421,7 @@ auich_trigger_input(void *v, void *start, void *end, int blksize,
|
|||
static int
|
||||
auich_powerstate(void *v, int state)
|
||||
{
|
||||
#if notyet
|
||||
struct auich_softc *sc;
|
||||
int rv;
|
||||
|
||||
|
@ -1440,6 +1443,9 @@ auich_powerstate(void *v, int state)
|
|||
}
|
||||
|
||||
return rv;
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
Loading…
Reference in New Issue