[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <5122EAF6.9040302@igalia.com>
Date: Tue, 19 Feb 2013 04:01:10 +0100
From: Javier Muñoz <jmunhoz@...lia.com>
To: Peter Huewe <peterhuewe@....de>
CC: Teddy Wang <teddy.wang@...iconmotion.com.cn>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Devendra Naga <devendra.aaru@...il.com>,
Bill Pemberton <wfp5p@...ginia.edu>,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] staging/sm7xxfb: Convert to SIMPLE_DEV_PM_OPS
Thanks!
Acked-by: Javier Muñoz <jmunhoz@...lia.com>
On 02/19/2013 12:12 AM, Peter Huewe wrote:
> Instead of assigning the pm_ops fields individually we can simply use
> SIMPLE_DEV_PM_OPS.
>
> Signed-off-by: Peter Huewe <peterhuewe@....de>
> ---
> drivers/staging/sm7xxfb/sm7xxfb.c | 10 +---------
> 1 files changed, 1 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/staging/sm7xxfb/sm7xxfb.c b/drivers/staging/sm7xxfb/sm7xxfb.c
> index 0764bbb..8add64b 100644
> --- a/drivers/staging/sm7xxfb/sm7xxfb.c
> +++ b/drivers/staging/sm7xxfb/sm7xxfb.c
> @@ -1006,15 +1006,7 @@ static int smtcfb_pci_resume(struct device *device)
> return 0;
> }
>
> -static const struct dev_pm_ops sm7xx_pm_ops = {
> - .suspend = smtcfb_pci_suspend,
> - .resume = smtcfb_pci_resume,
> - .freeze = smtcfb_pci_suspend,
> - .thaw = smtcfb_pci_resume,
> - .poweroff = smtcfb_pci_suspend,
> - .restore = smtcfb_pci_resume,
> -};
> -
> +static SIMPLE_DEV_PM_OPS(sm7xx_pm_ops, smtcfb_pci_suspend, smtcfb_pci_resume);
> #define SM7XX_PM_OPS (&sm7xx_pm_ops)
>
> #else /* !CONFIG_PM */
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists