mirror of
https://gitee.com/bianbu-linux/linux-6.6-fh
synced 2025-04-25 12:07:07 -04:00
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>
This commit is contained in:
parent
bc556d3edd
commit
26440a63a1
1 changed files with 2 additions and 2 deletions
|
@ -608,7 +608,7 @@ int llc_conn_ev_qlfy_p_flag_eq_1(struct sock *sk, struct sk_buff *skb)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* conn_ev_qlfy_last_frame_eq_1 - checks if frame is last in tx window
|
* llc_conn_ev_qlfy_last_frame_eq_1 - checks if frame is last in tx window
|
||||||
* @sk: current connection structure.
|
* @sk: current connection structure.
|
||||||
* @skb: current event.
|
* @skb: current event.
|
||||||
*
|
*
|
||||||
|
@ -624,7 +624,7 @@ int llc_conn_ev_qlfy_last_frame_eq_1(struct sock *sk, struct sk_buff *skb)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* conn_ev_qlfy_last_frame_eq_0 - checks if frame isn't last in tx window
|
* llc_conn_ev_qlfy_last_frame_eq_0 - checks if frame isn't last in tx window
|
||||||
* @sk: current connection structure.
|
* @sk: current connection structure.
|
||||||
* @skb: current event.
|
* @skb: current event.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue