aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/driver-model/driver.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/driver-model/driver.txt')
-rw-r--r--Documentation/driver-model/driver.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/driver-model/driver.txt b/Documentation/driver-model/driver.txt
index 12447787d329..6031a68dd3f5 100644
--- a/Documentation/driver-model/driver.txt
+++ b/Documentation/driver-model/driver.txt
@@ -16,7 +16,7 @@ struct device_driver {
16 int (*probe) (struct device * dev); 16 int (*probe) (struct device * dev);
17 int (*remove) (struct device * dev); 17 int (*remove) (struct device * dev);
18 18
19 int (*suspend) (struct device * dev, u32 state, u32 level); 19 int (*suspend) (struct device * dev, pm_message_t state, u32 level);
20 int (*resume) (struct device * dev, u32 level); 20 int (*resume) (struct device * dev, u32 level);
21 21
22 void (*release) (struct device_driver * drv); 22 void (*release) (struct device_driver * drv);
@@ -195,7 +195,7 @@ device; i.e. anything in the device's driver_data field.
195If the device is still present, it should quiesce the device and place 195If the device is still present, it should quiesce the device and place
196it into a supported low-power state. 196it into a supported low-power state.
197 197
198 int (*suspend) (struct device * dev, u32 state, u32 level); 198 int (*suspend) (struct device * dev, pm_message_t state, u32 level);
199 199
200suspend is called to put the device in a low power state. There are 200suspend is called to put the device in a low power state. There are
201several stages to successfully suspending a device, which is denoted in 201several stages to successfully suspending a device, which is denoted in