diff options
author | Peng Li <lipeng321@huawei.com> | 2021-06-08 11:12:29 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-08 22:04:04 +0300 |
commit | 8ea4bfb30abc5ef2688f014ffab70b5e704f0c83 (patch) | |
tree | 7a06f3a021c8330b2e780d108d7568b5236fc7b0 /drivers/net/wan | |
parent | 50d4c363366a09706073595f8e2d3b1683c3bbcc (diff) | |
download | linux-8ea4bfb30abc5ef2688f014ffab70b5e704f0c83.tar.xz |
net: farsync: fix the code style issue about "foo* bar"
Fix the checkpatch error as "foo * bar" should be "foo *bar".
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/farsync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wan/farsync.c b/drivers/net/wan/farsync.c index 9a69aa76ccaf..a5fe605d2c38 100644 --- a/drivers/net/wan/farsync.c +++ b/drivers/net/wan/farsync.c @@ -577,7 +577,7 @@ static u64 fst_work_txq; static u64 fst_work_intq; static void -fst_q_work_item(u64 * queue, int card_index) +fst_q_work_item(u64 *queue, int card_index) { unsigned long flags; u64 mask; |