diff options
author | Peng Li <lipeng321@huawei.com> | 2021-05-21 09:08:16 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-05-21 13:26:41 -0700 |
commit | 1bf705d4f2316ec213ada3119bc6cb352f43de64 (patch) | |
tree | d6820d60b4b70076e3ea971bca652e012341a7b7 | |
parent | 145efe6c279bbfd0795dcded592147278c22d713 (diff) |
net: wan: add braces {} to all arms of the statement
Braces {} should be used on all arms of this statement.
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>
-rw-r--r-- | drivers/net/wan/hd64572.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wan/hd64572.c b/drivers/net/wan/hd64572.c index 34acea93efdf..7fccf23c8bef 100644 --- a/drivers/net/wan/hd64572.c +++ b/drivers/net/wan/hd64572.c @@ -374,8 +374,9 @@ static void sca_set_port(port_t *port) tmc = 1; br = 0; /* For baud=CLOCK_BASE we use tmc=1 br=0 */ brv = 1; - } else if (tmc > 255) + } else if (tmc > 255) { tmc = 256; /* tmc=0 means 256 - low baud rates */ + } port->settings.clock_rate = CLOCK_BASE / brv / tmc; } else { |