Skip to content

Commit

Permalink
staging: greybus: fix alignment of open parenthesis
Browse files Browse the repository at this point in the history
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 <roheetchavan@gmail.com>
Link: https://lore.kernel.org/r/20230822080213.6757-1-roheetchavan@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Rohit Chavan authored and Greg Kroah-Hartman committed Aug 22, 2023
1 parent 72eb830 commit f6f0d97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/greybus/fw-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ static int gb_fw_core_probe(struct gb_bundle *bundle,
}

connection = gb_connection_create(bundle, cport_id,
gb_fw_mgmt_request_handler);
gb_fw_mgmt_request_handler);
if (IS_ERR(connection)) {
ret = PTR_ERR(connection);
dev_err(&bundle->dev,
Expand All @@ -110,7 +110,7 @@ static int gb_fw_core_probe(struct gb_bundle *bundle,
}

connection = gb_connection_create(bundle, cport_id,
gb_fw_download_request_handler);
gb_fw_download_request_handler);
if (IS_ERR(connection)) {
dev_err(&bundle->dev, "failed to create download connection (%ld)\n",
PTR_ERR(connection));
Expand Down

0 comments on commit f6f0d97

Please sign in to comment.