diff options
author | Logan Magee <mageelog@gmail.com> | 2020-03-24 00:31:10 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-24 08:10:28 +0300 |
commit | b0f83057a9d9cf38d98edb8946fb83c8e609ab66 (patch) | |
tree | 256f76aacf71d68ea11854e08871f6dcbca6c94d /drivers/net/ethernet/3com/typhoon.h | |
parent | 629cb919427a4c656363e89455255f189c3e00a4 (diff) | |
download | linux-b0f83057a9d9cf38d98edb8946fb83c8e609ab66.tar.xz |
net: typhoon: Add required whitespace after keywords
checkpatch found a lack of appropriate whitespace after certain keywords
as per the style guide. Add it in.
Signed-off-by: Logan Magee <mageelog@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/3com/typhoon.h')
-rw-r--r-- | drivers/net/ethernet/3com/typhoon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/3com/typhoon.h b/drivers/net/ethernet/3com/typhoon.h index 88187fc84aa3..2f634c64d5d1 100644 --- a/drivers/net/ethernet/3com/typhoon.h +++ b/drivers/net/ethernet/3com/typhoon.h @@ -366,7 +366,7 @@ struct resp_desc { memset(_ptr, 0, sizeof(struct cmd_desc)); \ _ptr->flags = TYPHOON_CMD_DESC | TYPHOON_DESC_VALID; \ _ptr->cmd = command; \ - } while(0) + } while (0) /* We set seqNo to 1 if we're expecting a response from this command */ #define INIT_COMMAND_WITH_RESPONSE(x, command) \ @@ -376,7 +376,7 @@ struct resp_desc { _ptr->flags |= TYPHOON_DESC_VALID; \ _ptr->cmd = command; \ _ptr->seqNo = 1; \ - } while(0) + } while (0) /* TYPHOON_CMD_SET_RX_FILTER filter bits (cmd.parm1) */ |