From: 25077667 Date: Sun, 25 Jul 2021 18:10:34 +0000 (+0800) Subject: Fix trivial tweak for missing comma X-Git-Tag: latest~229^2 X-Git-Url: https://www.ivnss.com/gitweb/?a=commitdiff_plain;h=00f7e7018febdc474430d3f9016d65025e520a6b;p=lkmpg Fix trivial tweak for missing comma --- diff --git a/examples/devicemodel.c b/examples/devicemodel.c index cc2cd59..ee9163f 100644 --- a/examples/devicemodel.c +++ b/examples/devicemodel.c @@ -56,7 +56,8 @@ static const struct dev_pm_ops devicemodel_pm_ops = { .poweroff = devicemodel_suspend, .freeze = devicemodel_suspend, .thaw = devicemodel_resume, - .restore = devicemodel_resume}; + .restore = devicemodel_resume, +}; static struct platform_driver devicemodel_driver = { .driver =