Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: llc: Correct some function names in header

Fix the following make W=1 kernel build warning:

net/llc/llc_c_ev.c:622: warning: expecting prototype for conn_ev_qlfy_last_frame_eq_1(). Prototype was for llc_conn_ev_qlfy_last_frame_eq_1() instead
net/llc/llc_c_ev.c:636: warning: expecting prototype for conn_ev_qlfy_last_frame_eq_0(). Prototype was for llc_conn_ev_qlfy_last_frame_eq_0() instead

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Yang Yingliang and committed by
David S. Miller
26440a63 bc556d3e

+2 -2
+2 -2
net/llc/llc_c_ev.c
··· 608 608 } 609 609 610 610 /** 611 - * conn_ev_qlfy_last_frame_eq_1 - checks if frame is last in tx window 611 + * llc_conn_ev_qlfy_last_frame_eq_1 - checks if frame is last in tx window 612 612 * @sk: current connection structure. 613 613 * @skb: current event. 614 614 * ··· 624 624 } 625 625 626 626 /** 627 - * conn_ev_qlfy_last_frame_eq_0 - checks if frame isn't last in tx window 627 + * llc_conn_ev_qlfy_last_frame_eq_0 - checks if frame isn't last in tx window 628 628 * @sk: current connection structure. 629 629 * @skb: current event. 630 630 *