diff options
author | Peng Li <lipeng321@huawei.com> | 2021-05-18 14:29:53 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-05-18 22:42:42 +0200 |
commit | da8e6fddbae36e2cedd7802949d9c92e9fbf13a0 (patch) | |
tree | c031be98a6a052b6a0d6b7df1948d82a8958ad38 /drivers/net/wan | |
parent | net: wan: remove redundant braces {} (diff) | |
download | linux-da8e6fddbae36e2cedd7802949d9c92e9fbf13a0.tar.xz linux-da8e6fddbae36e2cedd7802949d9c92e9fbf13a0.zip |
net: wan: remove redundant space
Space prohibited before that close parenthesis ')',
so removes the redundant space.
Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wan')
-rw-r--r-- | drivers/net/wan/c101.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wan/c101.c b/drivers/net/wan/c101.c index 5a04f18db32a..e2ca559e6553 100644 --- a/drivers/net/wan/c101.c +++ b/drivers/net/wan/c101.c @@ -84,7 +84,7 @@ static card_t **new_card = &first_card; /* EDA address register must be set in EDAL, EDAH order - 8 bit ISA bus */ #define sca_outw(value, reg, card) do { \ writeb(value & 0xFF, (card)->win0base + C101_SCA + (reg)); \ - writeb((value >> 8 ) & 0xFF, (card)->win0base + C101_SCA + (reg + 1));\ + writeb((value >> 8) & 0xFF, (card)->win0base + C101_SCA + (reg + 1));\ } while (0) #define port_to_card(port) (port) |