[PATCH] Fix documentation of driver suspend/resume callbacks
authorTakashi Iwai <tiwai@suse.de>
Fri, 28 Oct 2005 14:45:34 +0000 (16:45 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 28 Oct 2005 16:52:57 +0000 (09:52 -0700)
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Documentation/driver-model/driver.txt

index 7c26bfae4ba0d4475e2d9d87578c69a34f16bcab..59806c9761f7bbbd2c6c03e08fb95bf57f342b7d 100644 (file)
@@ -14,8 +14,8 @@ struct device_driver {
         int     (*probe)        (struct device * dev);
         int     (*remove)       (struct device * dev);
 
-        int     (*suspend)      (struct device * dev, pm_message_t state, u32 level);
-        int     (*resume)       (struct device * dev, u32 level);
+        int     (*suspend)      (struct device * dev, pm_message_t state);
+        int     (*resume)       (struct device * dev);
 };
 
 
@@ -194,11 +194,11 @@ device; i.e. anything in the device's driver_data field.
 If the device is still present, it should quiesce the device and place
 it into a supported low-power state.
 
-       int     (*suspend)      (struct device * dev, pm_message_t state, u32 level);
+       int     (*suspend)      (struct device * dev, pm_message_t state);
 
 suspend is called to put the device in a low power state.
 
-       int     (*resume)       (struct device * dev, u32 level);
+       int     (*resume)       (struct device * dev);
 
 Resume is used to bring a device back from a low power state.