staging: greybus: fix alignment of open parenthesis
authorRohit Chavan <roheetchavan@gmail.com>
Tue, 22 Aug 2023 08:02:13 +0000 (13:32 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 Aug 2023 13:47:55 +0000 (15:47 +0200)
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>
drivers/staging/greybus/fw-core.c

index 57bebf2..0fb15a6 100644 (file)
@@ -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,
@@ -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));