2021-01-23 05:14:40

by Dongliang Mu

[permalink] [raw]
Subject: [PATCH] usbnet: fix the indentation of one code snippet

Every line of code should start with tab (8 characters)

Signed-off-by: Dongliang Mu <[email protected]>
---
drivers/net/usb/usbnet.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c
index 1447da1d5729..305c5f7b9a9b 100644
--- a/drivers/net/usb/usbnet.c
+++ b/drivers/net/usb/usbnet.c
@@ -1964,12 +1964,12 @@ static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
cmd, reqtype, value, index, buf, size,
USB_CTRL_GET_TIMEOUT);
if (err > 0 && err <= size) {
- if (data)
- memcpy(data, buf, err);
- else
- netdev_dbg(dev->net,
- "Huh? Data requested but thrown away.\n");
- }
+ if (data)
+ memcpy(data, buf, err);
+ else
+ netdev_dbg(dev->net,
+ "Huh? Data requested but thrown away.\n");
+ }
kfree(buf);
out:
return err;
--
2.25.1


2021-01-27 20:51:54

by patchwork-bot+netdevbpf

[permalink] [raw]
Subject: Re: [PATCH] usbnet: fix the indentation of one code snippet

Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Sat, 23 Jan 2021 13:11:02 +0800 you wrote:
> Every line of code should start with tab (8 characters)
>
> Signed-off-by: Dongliang Mu <[email protected]>
> ---
> drivers/net/usb/usbnet.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)

Here is the summary with links:
- usbnet: fix the indentation of one code snippet
https://git.kernel.org/netdev/net-next/c/2961f562bb7b

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html


2021-02-01 10:37:59

by Oliver Neukum

[permalink] [raw]
Subject: Re: [PATCH] usbnet: fix the indentation of one code snippet

Am Samstag, den 23.01.2021, 13:11 +0800 schrieb Dongliang Mu:
> Every line of code should start with tab (8 characters)
>
> Signed-off-by: Dongliang Mu <[email protected]>
Acked-by: Oliver Neukum <[email protected]>