Commit 00ed8a2c authored by Linus Torvalds's avatar Linus Torvalds

Don't add noisy "deprecated" things to PM.

parent 9508edb0
...@@ -119,29 +119,29 @@ extern int pm_active; ...@@ -119,29 +119,29 @@ extern int pm_active;
/* /*
* Register a device with power management * Register a device with power management
*/ */
struct pm_dev __deprecated *pm_register(pm_dev_t type, struct pm_dev *pm_register(pm_dev_t type,
unsigned long id, unsigned long id,
pm_callback callback); pm_callback callback);
/* /*
* Unregister a device with power management * Unregister a device with power management
*/ */
void __deprecated pm_unregister(struct pm_dev *dev); void pm_unregister(struct pm_dev *dev);
/* /*
* Unregister all devices with matching callback * Unregister all devices with matching callback
*/ */
void __deprecated pm_unregister_all(pm_callback callback); void pm_unregister_all(pm_callback callback);
/* /*
* Send a request to a single device * Send a request to a single device
*/ */
int __deprecated pm_send(struct pm_dev *dev, pm_request_t rqst, void *data); int pm_send(struct pm_dev *dev, pm_request_t rqst, void *data);
/* /*
* Send a request to all devices * Send a request to all devices
*/ */
int __deprecated pm_send_all(pm_request_t rqst, void *data); int pm_send_all(pm_request_t rqst, void *data);
/* /*
* Find a device * Find a device
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment