diff options
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/sound/pci/csa.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/csa.c b/sys/dev/sound/pci/csa.c index 6361f3e..5671e86 100644 --- a/sys/dev/sound/pci/csa.c +++ b/sys/dev/sound/pci/csa.c @@ -363,9 +363,14 @@ csa_detach(device_t dev) static int csa_resume(device_t dev) { +#if 0 + /* + * XXX: this cannot possibly work + * needs to be properly implemented + */ csa_detach(dev); csa_attach(dev); - +#endif return 0; } |