aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/hamradio/dmascc.c
diff options
context:
space:
mode:
authorWang Qing <wangqing@vivo.com>2022-03-01 22:41:14 -0800
committerJakub Kicinski <kuba@kernel.org>2022-03-02 09:47:38 -0800
commita577223a97df241df26b91a95d03eec8c9fe0b36 (patch)
tree2e94e3b95bd137f24a845bbae88574a11a15b0c4 /drivers/net/hamradio/dmascc.c
parentMerge branch 'if_ether-h-add-industrial-fieldbus-ethertypes' (diff)
downloadlinux-dev-a577223a97df241df26b91a95d03eec8c9fe0b36.tar.xz
linux-dev-a577223a97df241df26b91a95d03eec8c9fe0b36.zip
net: hamradio: fix compliation error
add missing ")" which caused by previous commit. Fixes: 61c4fb9c4d09 ("net: hamradio: use time_is_after_jiffies() instead of open coding it") Link: https://lore.kernel.org/all/1646018012-61129-1-git-send-email-wangqing@vivo.com/ Signed-off-by: Wang Qing <wangqing@vivo.com> Link: https://lore.kernel.org/r/1646203277-83159-1-git-send-email-wangqing@vivo.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/hamradio/dmascc.c')
-rw-r--r--drivers/net/hamradio/dmascc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/hamradio/dmascc.c b/drivers/net/hamradio/dmascc.c
index 6e7d17a75972..a2a12208e3ad 100644
--- 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 {