We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 641ba6d commit 7ac56e4Copy full SHA for 7ac56e4
net/can/j1939/transport.c
@@ -1191,13 +1191,13 @@ static enum hrtimer_restart j1939_tp_txtimer(struct hrtimer *hrtimer)
1191
1192
static void j1939_session_completed(struct j1939_session *session)
1193
{
1194
- struct sk_buff *skb;
+ struct sk_buff *se_skb;
1195
1196
if (!session->transmission) {
1197
- skb = j1939_session_skb_get(session);
+ se_skb = j1939_session_skb_get(session);
1198
/* distribute among j1939 receivers */
1199
- j1939_sk_recv(session->priv, skb);
1200
- consume_skb(skb);
+ j1939_sk_recv(session->priv, se_skb);
+ consume_skb(se_skb);
1201
}
1202
1203
j1939_session_deactivate_activate_next(session);
0 commit comments