diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2020-10-22 10:37:08 +0200 |
---|---|---|
committer | Marc Kleine-Budde <mkl@pengutronix.de> | 2020-11-03 22:30:31 +0100 |
commit | ea780d39b1888ed5afc243c29b23d9bdb3828c7a (patch) | |
tree | 13159682a7d84bc899224bc40c508d7f92df2ac3 /Documentation | |
parent | 864a2756d369861af15327b6ff62bb6fe984dbc8 (diff) | |
download | linux-ea780d39b1888ed5afc243c29b23d9bdb3828c7a.tar.gz linux-ea780d39b1888ed5afc243c29b23d9bdb3828c7a.tar.bz2 linux-ea780d39b1888ed5afc243c29b23d9bdb3828c7a.zip |
can: j1939: swap addr and pgn in the send example
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>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/networking/j1939.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/networking/j1939.rst b/Documentation/networking/j1939.rst index be59fcece3bf..faf2eb5c5052 100644 --- a/Documentation/networking/j1939.rst +++ b/Documentation/networking/j1939.rst @@ -414,8 +414,8 @@ Send: .can_family = AF_CAN, .can_addr.j1939 = { .name = J1939_NO_NAME; - .pgn = 0x30, - .addr = 0x12300, + .addr = 0x30, + .pgn = 0x12300, }, }; |