disable resume code implementing panic().

this needs to be reimplemented properly.
This commit is contained in:
Cameron Grant 2003-08-14 22:09:10 +00:00
parent 828447e0ca
commit 8e01d384af
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118922

View File

@ -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;
}