diff mbox series

[net-next,01/15] tty: Add N_CAN327 line discipline ID for ELM327 based CAN driver

Message ID 20220703101430.1306048-2-mkl@pengutronix.de (mailing list archive)
State Accepted
Commit 713eb3c1261a1f89e35bdf233265aa5a2c46e9b2
Delegated to: Netdev Maintainers
Headers show
Series [net-next,01/15] tty: Add N_CAN327 line discipline ID for ELM327 based CAN driver | expand

Checks

Context Check Description
netdev/tree_selection success Clearly marked for net-next, async
netdev/apply success Patch already applied to net-next

Commit Message

Marc Kleine-Budde July 3, 2022, 10:14 a.m. UTC
From: Max Staudt <max@enpas.org>

The actual driver will be added via the CAN tree.

Link: https://lore.kernel.org/all/20220618180134.9890-1-max@enpas.org
Link: https://lore.kernel.org/all/Yrm9Ezlw1dLmIxyS@kroah.com
Signed-off-by: Max Staudt <max@enpas.org>
Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 include/uapi/linux/tty.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


base-commit: 0fcae3c8b1b32d79cb4bbf841023757358fb0413

Comments

patchwork-bot+netdevbpf@kernel.org July 3, 2022, 11:40 a.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (master)
by Marc Kleine-Budde <mkl@pengutronix.de>:

On Sun,  3 Jul 2022 12:14:15 +0200 you wrote:
> From: Max Staudt <max@enpas.org>
> 
> The actual driver will be added via the CAN tree.
> 
> Link: https://lore.kernel.org/all/20220618180134.9890-1-max@enpas.org
> Link: https://lore.kernel.org/all/Yrm9Ezlw1dLmIxyS@kroah.com
> Signed-off-by: Max Staudt <max@enpas.org>
> Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>
> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> 
> [...]

Here is the summary with links:
  - [net-next,01/15] tty: Add N_CAN327 line discipline ID for ELM327 based CAN driver
    https://git.kernel.org/netdev/net-next/c/713eb3c1261a
  - [net-next,02/15] can: can327: CAN/ldisc driver for ELM327 based OBD-II adapters
    https://git.kernel.org/netdev/net-next/c/43da2f07622f
  - [net-next,03/15] can: ctucanfd: ctucan_interrupt(): fix typo
    https://git.kernel.org/netdev/net-next/c/50f2944009a2
  - [net-next,04/15] can: slcan: use the BIT() helper
    https://git.kernel.org/netdev/net-next/c/3cd864901bc5
  - [net-next,05/15] can: slcan: use netdev helpers to print out messages
    https://git.kernel.org/netdev/net-next/c/da6788ea025c
  - [net-next,06/15] can: slcan: use the alloc_can_skb() helper
    https://git.kernel.org/netdev/net-next/c/92a31782c848
  - [net-next,07/15] can: netlink: dump bitrate 0 if can_priv::bittiming.bitrate is -1U
    https://git.kernel.org/netdev/net-next/c/036bff2800cb
  - [net-next,08/15] can: slcan: use CAN network device driver API
    https://git.kernel.org/netdev/net-next/c/c4e54b063f42
  - [net-next,09/15] can: slcan: allow to send commands to the adapter
    https://git.kernel.org/netdev/net-next/c/52f9ac85b876
  - [net-next,10/15] can: slcan: set bitrate by CAN device driver API
    https://git.kernel.org/netdev/net-next/c/dca796299462
  - [net-next,11/15] can: slcan: send the open/close commands to the adapter
    https://git.kernel.org/netdev/net-next/c/5bac315be7eb
  - [net-next,12/15] can: slcan: move driver into separate sub directory
    https://git.kernel.org/netdev/net-next/c/98b12064591d
  - [net-next,13/15] can: slcan: add ethtool support to reset adapter errors
    https://git.kernel.org/netdev/net-next/c/4de0e8efa052
  - [net-next,14/15] can: slcan: extend the protocol with error info
    https://git.kernel.org/netdev/net-next/c/b32ff4668544
  - [net-next,15/15] can: slcan: extend the protocol with CAN state info
    https://git.kernel.org/netdev/net-next/c/0a9cdcf098a4

You are awesome, thank you!
diff mbox series

Patch

diff --git a/include/uapi/linux/tty.h b/include/uapi/linux/tty.h
index 9d0f06bfbac3..68aeae2addec 100644
--- a/include/uapi/linux/tty.h
+++ b/include/uapi/linux/tty.h
@@ -38,8 +38,9 @@ 
 #define N_NULL		27	/* Null ldisc used for error handling */
 #define N_MCTP		28	/* MCTP-over-serial */
 #define N_DEVELOPMENT	29	/* Manual out-of-tree testing */
+#define N_CAN327	30	/* ELM327 based OBD-II interfaces */
 
 /* Always the newest line discipline + 1 */
-#define NR_LDISCS	30
+#define NR_LDISCS	31
 
 #endif /* _UAPI_LINUX_TTY_H */