소스 검색

Fix trivial tweak for missing comma

25077667 3 년 전
부모
커밋
00f7e7018f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      examples/devicemodel.c

+ 2 - 1
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 =