]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
can: j1939: swap addr and pgn in the send example
authorYegor Yefremov <yegorslists@googlemail.com>
Thu, 22 Oct 2020 08:37:08 +0000 (10:37 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Nov 2020 18:22:05 +0000 (19:22 +0100)
[ Upstream commit ea780d39b1888ed5afc243c29b23d9bdb3828c7a ]

The address was wrongly assigned to the PGN field and vice versa.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Link: https://lore.kernel.org/r/20201022083708.8755-1-yegorslists@googlemail.com
Fixes: 9d71dd0c7009 ("can: add support of SAE J1939 protocol")
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Documentation/networking/j1939.rst

index f5be243d250a40e75d8bdef11b2489b56d7af691..4b0db514b20104c5cb8498f57c6a205e20b123f2 100644 (file)
@@ -414,8 +414,8 @@ Send:
                .can_family = AF_CAN,
                .can_addr.j1939 = {
                        .name = J1939_NO_NAME;
-                       .pgn = 0x30,
-                       .addr = 0x12300,
+                       .addr = 0x30,
+                       .pgn = 0x12300,
                },
        };