Commit 3d1a54e8 authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller

net/hsr: fix a warning message

WARN_ON_ONCE() takes a condition, it doesn't take an error message.  I
have converted this to WARN() instead.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7d267278
......@@ -312,7 +312,7 @@ static void send_hsr_supervision_frame(struct hsr_port *master, u8 type)
return;
out:
WARN_ON_ONCE("HSR: Could not send supervision frame\n");
WARN_ONCE(1, "HSR: Could not send supervision frame\n");
kfree_skb(skb);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment