* [PATCH 0/2] platform / x86: Convert remaining drivers to dev_pm_ops-based PM
@ 2012-06-30 21:56 Rafael J. Wysocki
2012-06-30 21:56 ` [PATCH 1/2] hdaps: Use struct dev_pm_ops for power management Rafael J. Wysocki
2012-06-30 21:57 ` [PATCH 2/2] msi-laptop: " Rafael J. Wysocki
0 siblings, 2 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2012-06-30 21:56 UTC (permalink / raw)
To: platform-driver-x86
Cc: Matthew Garrett, LKML, Linux PM list, Frank Seidel, Lee, Chun-Yi
Hi all,
After the changes I've sent recently there are two more drivers still using
legacy power management callbacks, so convert them too:
[1/2] hdaps: Use struct dev_pm_ops for power management
[2/2] msi-laptop: Use struct dev_pm_ops for power management
Thanks,
Rafael
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] hdaps: Use struct dev_pm_ops for power management
2012-06-30 21:56 [PATCH 0/2] platform / x86: Convert remaining drivers to dev_pm_ops-based PM Rafael J. Wysocki
@ 2012-06-30 21:56 ` Rafael J. Wysocki
2012-06-30 21:57 ` [PATCH 2/2] msi-laptop: " Rafael J. Wysocki
1 sibling, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2012-06-30 21:56 UTC (permalink / raw)
To: platform-driver-x86
Cc: Matthew Garrett, LKML, Linux PM list, Frank Seidel, Lee, Chun-Yi
From: Rafael J. Wysocki <rjw@sisk.pl>
Make the HDAPS driver define its PM callbacks through
a struct dev_pm_ops object rather than by using legacy PM hooks
in struct platform_driver.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
drivers/platform/x86/hdaps.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
Index: linux/drivers/platform/x86/hdaps.c
===================================================================
--- linux.orig/drivers/platform/x86/hdaps.c
+++ linux/drivers/platform/x86/hdaps.c
@@ -305,17 +305,19 @@ static int hdaps_probe(struct platform_d
return 0;
}
-static int hdaps_resume(struct platform_device *dev)
+static int hdaps_resume(struct device *dev)
{
return hdaps_device_init();
}
+static SIMPLE_DEV_PM_OPS(hdaps_pm, NULL, hdaps_resume);
+
static struct platform_driver hdaps_driver = {
.probe = hdaps_probe,
- .resume = hdaps_resume,
.driver = {
.name = "hdaps",
.owner = THIS_MODULE,
+ .pm = &hdaps_pm,
},
};
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/2] msi-laptop: Use struct dev_pm_ops for power management
2012-06-30 21:56 [PATCH 0/2] platform / x86: Convert remaining drivers to dev_pm_ops-based PM Rafael J. Wysocki
2012-06-30 21:56 ` [PATCH 1/2] hdaps: Use struct dev_pm_ops for power management Rafael J. Wysocki
@ 2012-06-30 21:57 ` Rafael J. Wysocki
2012-07-06 7:24 ` joeyli
1 sibling, 1 reply; 4+ messages in thread
From: Rafael J. Wysocki @ 2012-06-30 21:57 UTC (permalink / raw)
To: platform-driver-x86
Cc: Matthew Garrett, LKML, Linux PM list, Frank Seidel, Lee, Chun-Yi
From: Rafael J. Wysocki <rjw@sisk.pl>
Make the msi-laptop driver define its PM callbacks through
a struct dev_pm_ops object rather than by using legacy PM hooks
in struct platform_driver.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
drivers/platform/x86/msi-laptop.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
Index: linux/drivers/platform/x86/msi-laptop.c
===================================================================
--- linux.orig/drivers/platform/x86/msi-laptop.c
+++ linux/drivers/platform/x86/msi-laptop.c
@@ -85,7 +85,8 @@
#define MSI_STANDARD_EC_TOUCHPAD_ADDRESS 0xe4
#define MSI_STANDARD_EC_TOUCHPAD_MASK (1 << 4)
-static int msi_laptop_resume(struct platform_device *device);
+static int msi_laptop_resume(struct device *device);
+static SIMPLE_DEV_PM_OPS(msi_laptop_pm, NULL, msi_laptop_resume);
#define MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS 0x2f
@@ -437,8 +438,8 @@ static struct platform_driver msipf_driv
.driver = {
.name = "msi-laptop-pf",
.owner = THIS_MODULE,
+ .pm = &msi_laptop_pm,
},
- .resume = msi_laptop_resume,
};
static struct platform_device *msipf_device;
@@ -752,7 +753,7 @@ err_bluetooth:
return retval;
}
-static int msi_laptop_resume(struct platform_device *device)
+static int msi_laptop_resume(struct device *device)
{
u8 data;
int result;
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] msi-laptop: Use struct dev_pm_ops for power management
2012-06-30 21:57 ` [PATCH 2/2] msi-laptop: " Rafael J. Wysocki
@ 2012-07-06 7:24 ` joeyli
0 siblings, 0 replies; 4+ messages in thread
From: joeyli @ 2012-07-06 7:24 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: platform-driver-x86, Matthew Garrett, LKML, Linux PM list,
Frank Seidel, Lee, Chun-Yi
於 六,2012-06-30 於 23:57 +0200,Rafael J. Wysocki 提到:
> From: Rafael J. Wysocki <rjw@sisk.pl>
>
> Make the msi-laptop driver define its PM callbacks through
> a struct dev_pm_ops object rather than by using legacy PM hooks
> in struct platform_driver.
>
> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
This patch good to me.
Acked-by: Lee, Chun-Yi <jlee@suse.com>
Thanks a lot!
Joey Lee
> ---
> drivers/platform/x86/msi-laptop.c | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> Index: linux/drivers/platform/x86/msi-laptop.c
> ===================================================================
> --- linux.orig/drivers/platform/x86/msi-laptop.c
> +++ linux/drivers/platform/x86/msi-laptop.c
> @@ -85,7 +85,8 @@
> #define MSI_STANDARD_EC_TOUCHPAD_ADDRESS 0xe4
> #define MSI_STANDARD_EC_TOUCHPAD_MASK (1 << 4)
>
> -static int msi_laptop_resume(struct platform_device *device);
> +static int msi_laptop_resume(struct device *device);
> +static SIMPLE_DEV_PM_OPS(msi_laptop_pm, NULL, msi_laptop_resume);
>
> #define MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS 0x2f
>
> @@ -437,8 +438,8 @@ static struct platform_driver msipf_driv
> .driver = {
> .name = "msi-laptop-pf",
> .owner = THIS_MODULE,
> + .pm = &msi_laptop_pm,
> },
> - .resume = msi_laptop_resume,
> };
>
> static struct platform_device *msipf_device;
> @@ -752,7 +753,7 @@ err_bluetooth:
> return retval;
> }
>
> -static int msi_laptop_resume(struct platform_device *device)
> +static int msi_laptop_resume(struct device *device)
> {
> u8 data;
> int result;
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-07-06 7:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-30 21:56 [PATCH 0/2] platform / x86: Convert remaining drivers to dev_pm_ops-based PM Rafael J. Wysocki
2012-06-30 21:56 ` [PATCH 1/2] hdaps: Use struct dev_pm_ops for power management Rafael J. Wysocki
2012-06-30 21:57 ` [PATCH 2/2] msi-laptop: " Rafael J. Wysocki
2012-07-06 7:24 ` joeyli
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox