Skip to content

Commit

Permalink
crypto: ux500 - add missing comma
Browse files Browse the repository at this point in the history
Commit 4f31f5b
"PM / crypto / ux500: Use struct dev_pm_ops for power management"
add a new line to the driver struct but missed to add a
trailing comma, causing build errors when crypto is
selected. This adds the missing comma.

This was not noticed until now because the crypto block
is not in the ux500 defconfig. A separate patch will
be submitted to fix this.

Cc: <[email protected]> # 3.8.x
Cc: Rafael J. Wysocki <[email protected]>
Cc: Magnus Myrstedt <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
linusw authored and herbertx committed Apr 5, 2013
1 parent d3dde52 commit d47cbd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/crypto/ux500/cryp/cryp_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1750,7 +1750,7 @@ static struct platform_driver cryp_driver = {
.shutdown = ux500_cryp_shutdown,
.driver = {
.owner = THIS_MODULE,
.name = "cryp1"
.name = "cryp1",
.pm = &ux500_cryp_pm,
}
};
Expand Down

0 comments on commit d47cbd5

Please sign in to comment.