From: Marc Kleine-Budde <mkl@pengutronix.de> To: linux-can@vger.kernel.org Cc: Robin van der Gracht <robin@protonic.nl>, Oleksij Rempel <linux@rempel-privat.de>, Marc Kleine-Budde <mkl@pengutronix.de> Subject: [PATCH] can: j1939: j1939_session_tx_dat(): fix typo Date: Thu, 29 Jul 2021 13:39:17 +0200 [thread overview] Message-ID: <20210729113917.1655492-1-mkl@pengutronix.de> (raw) This patch fixes a typo in the j1939_session_tx_dat() function. Fixes: 9d71dd0c7009 ("can: add support of SAE J1939 protocol") Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> --- net/can/j1939/transport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/can/j1939/transport.c b/net/can/j1939/transport.c index efdf79de3db6..b28c22d30686 100644 --- a/net/can/j1939/transport.c +++ b/net/can/j1939/transport.c @@ -822,7 +822,7 @@ static int j1939_session_tx_dat(struct j1939_session *session) memcpy(&dat[1], &tpdat[offset], len); ret = j1939_tp_tx_dat(session, dat, len + 1); if (ret < 0) { - /* ENOBUS == CAN interface TX queue is full */ + /* ENOBUFS == CAN interface TX queue is full */ if (ret != -ENOBUFS) netdev_alert(priv->ndev, "%s: 0x%p: queue data error: %i\n", -- 2.30.2
reply other threads:[~2021-07-29 11:39 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210729113917.1655492-1-mkl@pengutronix.de \ --to=mkl@pengutronix.de \ --cc=linux-can@vger.kernel.org \ --cc=linux@rempel-privat.de \ --cc=robin@protonic.nl \ --subject='Re: [PATCH] can: j1939: j1939_session_tx_dat(): fix typo' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.