Commit 18c8d304 authored by Jiapeng Chong's avatar Jiapeng Chong Committed by Jakub Kicinski

net/appletalk: Fix inconsistent indenting

Eliminate the follow smatch warning:

drivers/net/appletalk/ltpc.c:588 idle() warn: inconsistent indenting.
Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Link: https://lore.kernel.org/r/1622024464-29896-1-git-send-email-jiapeng.chong@linux.alibaba.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent c7a551b2
...@@ -584,11 +584,13 @@ static void idle(struct net_device *dev) ...@@ -584,11 +584,13 @@ static void idle(struct net_device *dev)
printk("%02x ",ltdmacbuf[i]); printk("%02x ",ltdmacbuf[i]);
printk("\n"); printk("\n");
} }
handlecommand(dev); handlecommand(dev);
if(0xfa==inb_p(base+6)) {
/* we timed out, so return */ if (0xfa == inb_p(base + 6)) {
goto done; /* we timed out, so return */
} goto done;
}
} else { } else {
/* we don't seem to have a command */ /* we don't seem to have a command */
if (!mboxinuse[0]) { if (!mboxinuse[0]) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment