diff options
Diffstat (limited to 'sys/kern/device_if.m')
-rw-r--r-- | sys/kern/device_if.m | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/sys/kern/device_if.m b/sys/kern/device_if.m index f429e67759a02..4ae1df86a0db5 100644 --- a/sys/kern/device_if.m +++ b/sys/kern/device_if.m @@ -23,10 +23,10 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $Id: device_if.m,v 1.2 1998/11/08 18:35:53 nsouch Exp $ +# $Id$ # -INTERFACE device; +INTERFACE device # # Probe to see if the device is present. Return 0 if the device exists, @@ -67,17 +67,3 @@ METHOD int detach { METHOD int shutdown { device_t dev; }; - -# -# This is called by the power-management subsystem when a suspend has been -# requested by the user or by some automatic mechanism. This gives -# drivers a chance to veto the suspend or save their configuration before -# power is removed. -# -METHOD int suspend { - device_t dev; -}; - -METHOD int resume { - device_t dev; -}; |