Skip to content

Commit

Permalink
crypto: omap-des - Use SIMPLE_DEV_PM_OPS macro
Browse files Browse the repository at this point in the history
Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
Jingoo Han authored and Herbert Xu committed Mar 10, 2014
1 parent ea7b284 commit e78f919
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/crypto/omap-des.c
Original file line number Diff line number Diff line change
Expand Up @@ -1196,9 +1196,7 @@ static int omap_des_resume(struct device *dev)
}
#endif

static const struct dev_pm_ops omap_des_pm_ops = {
SET_SYSTEM_SLEEP_PM_OPS(omap_des_suspend, omap_des_resume)
};
static SIMPLE_DEV_PM_OPS(omap_des_pm_ops, omap_des_suspend, omap_des_resume);

static struct platform_driver omap_des_driver = {
.probe = omap_des_probe,
Expand Down

0 comments on commit e78f919

Please sign in to comment.