Skip to content

Commit f6f0d97

Browse files
roheetchavangregkh
authored andcommitted
staging: greybus: fix alignment of open parenthesis
Fixed all CHECK: Alignment should match open parenthesis as reported by checkpatch to adhere to the Linux kernel coding-style guidelines. Signed-off-by: Rohit Chavan <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 72eb830 commit f6f0d97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/staging/greybus/fw-core.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ static int gb_fw_core_probe(struct gb_bundle *bundle,
8989
}
9090

9191
connection = gb_connection_create(bundle, cport_id,
92-
gb_fw_mgmt_request_handler);
92+
gb_fw_mgmt_request_handler);
9393
if (IS_ERR(connection)) {
9494
ret = PTR_ERR(connection);
9595
dev_err(&bundle->dev,
@@ -110,7 +110,7 @@ static int gb_fw_core_probe(struct gb_bundle *bundle,
110110
}
111111

112112
connection = gb_connection_create(bundle, cport_id,
113-
gb_fw_download_request_handler);
113+
gb_fw_download_request_handler);
114114
if (IS_ERR(connection)) {
115115
dev_err(&bundle->dev, "failed to create download connection (%ld)\n",
116116
PTR_ERR(connection));

0 commit comments

Comments
 (0)