diff options
| author | Dmitry Torokhov <[email protected]> | 2023-08-30 16:06:38 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <[email protected]> | 2023-08-30 16:06:38 -0700 | 
| commit | 1ac731c529cd4d6adbce134754b51ff7d822b145 (patch) | |
| tree | 143ab3f35ca5f3b69f583c84e6964b17139c2ec1 /drivers/base/power/main.c | |
| parent | 07b4c950f27bef0362dc6ad7ee713aab61d58149 (diff) | |
| parent | 54116d442e001e1b6bd482122043b1870998a1f3 (diff) | |
Merge branch 'next' into for-linus
Prepare input updates for 6.6 merge window.
Diffstat (limited to 'drivers/base/power/main.c')
| -rw-r--r-- | drivers/base/power/main.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c index c50139207794..f85f3515c258 100644 --- a/drivers/base/power/main.c +++ b/drivers/base/power/main.c @@ -679,7 +679,7 @@ static bool dpm_async_fn(struct device *dev, async_func_t func)  static void async_resume_noirq(void *data, async_cookie_t cookie)  { -	struct device *dev = (struct device *)data; +	struct device *dev = data;  	int error;  	error = device_resume_noirq(dev, pm_transition, true); @@ -816,7 +816,7 @@ Out:  static void async_resume_early(void *data, async_cookie_t cookie)  { -	struct device *dev = (struct device *)data; +	struct device *dev = data;  	int error;  	error = device_resume_early(dev, pm_transition, true); @@ -980,7 +980,7 @@ static int device_resume(struct device *dev, pm_message_t state, bool async)  static void async_resume(void *data, async_cookie_t cookie)  { -	struct device *dev = (struct device *)data; +	struct device *dev = data;  	int error;  	error = device_resume(dev, pm_transition, true); @@ -1269,7 +1269,7 @@ Complete:  static void async_suspend_noirq(void *data, async_cookie_t cookie)  { -	struct device *dev = (struct device *)data; +	struct device *dev = data;  	int error;  	error = __device_suspend_noirq(dev, pm_transition, true); @@ -1450,7 +1450,7 @@ Complete:  static void async_suspend_late(void *data, async_cookie_t cookie)  { -	struct device *dev = (struct device *)data; +	struct device *dev = data;  	int error;  	error = __device_suspend_late(dev, pm_transition, true); @@ -1727,7 +1727,7 @@ static int __device_suspend(struct device *dev, pm_message_t state, bool async)  static void async_suspend(void *data, async_cookie_t cookie)  { -	struct device *dev = (struct device *)data; +	struct device *dev = data;  	int error;  	error = __device_suspend(dev, pm_transition, true);  |