Align function arguments to match the open parenthesis per the kernel coding style guidelines.
Signed-off-by: Noah Techoueyres noahtechoueyres@gmail.com --- drivers/staging/greybus/loopback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/greybus/loopback.c b/drivers/staging/greybus/loopback.c index ea57b1f5d156..c33b8aa5871c 100644 --- a/drivers/staging/greybus/loopback.c +++ b/drivers/staging/greybus/loopback.c @@ -679,7 +679,7 @@ static int gb_loopback_request_handler(struct gb_operation *operation) }
if (!gb_operation_response_alloc(operation, - len + sizeof(*response), GFP_KERNEL)) { + len + sizeof(*response), GFP_KERNEL)) { dev_err(dev, "error allocating response\n"); return -ENOMEM; }
On Sun, Aug 02, 2026 at 09:50:22PM -0400, Noah Techoueyres wrote:
Align function arguments to match the open parenthesis per the kernel coding style guidelines.
Signed-off-by: Noah Techoueyres noahtechoueyres@gmail.com
drivers/staging/greybus/loopback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/greybus/loopback.c b/drivers/staging/greybus/loopback.c index ea57b1f5d156..c33b8aa5871c 100644 --- a/drivers/staging/greybus/loopback.c +++ b/drivers/staging/greybus/loopback.c @@ -679,7 +679,7 @@ static int gb_loopback_request_handler(struct gb_operation *operation) } if (!gb_operation_response_alloc(operation,
len + sizeof(*response), GFP_KERNEL)) {
len + sizeof(*response), GFP_KERNEL)) {
Now you are over 80 columns, this keeps going back and forth. It's fine as-is.
thanks,
greg k-h