diff options
Diffstat (limited to 'include/linux/device.h')
-rw-r--r-- | include/linux/device.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index 1a3686d15f9..4a520051c31 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
@@ -65,7 +65,7 @@ struct bus_type { | |||
65 | int (*resume_early)(struct device *dev); | 65 | int (*resume_early)(struct device *dev); |
66 | int (*resume)(struct device *dev); | 66 | int (*resume)(struct device *dev); |
67 | 67 | ||
68 | struct pm_ext_ops *pm; | 68 | struct dev_pm_ops *pm; |
69 | 69 | ||
70 | struct bus_type_private *p; | 70 | struct bus_type_private *p; |
71 | }; | 71 | }; |
@@ -133,7 +133,7 @@ struct device_driver { | |||
133 | int (*resume) (struct device *dev); | 133 | int (*resume) (struct device *dev); |
134 | struct attribute_group **groups; | 134 | struct attribute_group **groups; |
135 | 135 | ||
136 | struct pm_ops *pm; | 136 | struct dev_pm_ops *pm; |
137 | 137 | ||
138 | struct driver_private *p; | 138 | struct driver_private *p; |
139 | }; | 139 | }; |
@@ -198,7 +198,7 @@ struct class { | |||
198 | int (*suspend)(struct device *dev, pm_message_t state); | 198 | int (*suspend)(struct device *dev, pm_message_t state); |
199 | int (*resume)(struct device *dev); | 199 | int (*resume)(struct device *dev); |
200 | 200 | ||
201 | struct pm_ops *pm; | 201 | struct dev_pm_ops *pm; |
202 | struct class_private *p; | 202 | struct class_private *p; |
203 | }; | 203 | }; |
204 | 204 | ||
@@ -291,7 +291,7 @@ struct device_type { | |||
291 | int (*suspend)(struct device *dev, pm_message_t state); | 291 | int (*suspend)(struct device *dev, pm_message_t state); |
292 | int (*resume)(struct device *dev); | 292 | int (*resume)(struct device *dev); |
293 | 293 | ||
294 | struct pm_ops *pm; | 294 | struct dev_pm_ops *pm; |
295 | }; | 295 | }; |
296 | 296 | ||
297 | /* interface for exporting device attributes */ | 297 | /* interface for exporting device attributes */ |