[PATCH] net: hamradio: fix compliation error

From: Qing Wang
Date: Wed Mar 02 2022 - 01:41:38 EST


From: Wang Qing <wangqing@xxxxxxxx>

add missing ")" which caused by previous commit.

Link: https://lore.kernel.org/all/1646018012-61129-1-git-send-email-wangqing@xxxxxxxx/
Signed-off-by: Wang Qing <wangqing@xxxxxxxx>
---
drivers/net/hamradio/dmascc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/hamradio/dmascc.c b/drivers/net/hamradio/dmascc.c
index 6e7d17a..a2a1220
--- a/drivers/net/hamradio/dmascc.c
+++ b/drivers/net/hamradio/dmascc.c
@@ -1354,7 +1354,7 @@ static void es_isr(struct scc_priv *priv)
/* Switch state */
write_scc(priv, R15, 0);
if (priv->tx_count &&
- time_is_after_jiffies(priv->tx_start + priv->param.txtimeout) {
+ time_is_after_jiffies(priv->tx_start + priv->param.txtimeout)) {
priv->state = TX_PAUSE;
start_timer(priv, priv->param.txpause, 0);
} else {
--
2.7.4