mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 0/2] can: xilinx_can: Document driver description to list all supported IPs
@ 2024-05-03  6:05 Harini T
  2024-05-03  6:05 ` [PATCH 1/2] dt-bindings: can: xilinx_can: Modify the title to indicate CAN and CANFD controllers are supported Harini T
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Harini T @ 2024-05-03  6:05 UTC (permalink / raw)
  To: mkl, mailhol.vincent, davem, edumazet, pabeni, michal.simek,
	appana.durga.rao, kuba
  Cc: linux-can, netdev, linux-arm-kernel, linux-kernel, srinivas.goud,
	Harini T

Xilinx CAN driver supports AXI CAN, AXI CANFD, CANPS and CANFD PS IPs.
1. Modify the dt-bindings title to indicate that both controllers are
supported.
2. Document all supported IPs in driver comment description.

Harini T (2):
  dt-bindings: can: xilinx_can: Modify the title to indicate CAN and
    CANFD controllers are supported
  can: xilinx_can: Document driver description to list all supported IPs

 Documentation/devicetree/bindings/net/can/xilinx,can.yaml | 2 +-
 drivers/net/can/xilinx_can.c                              | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] dt-bindings: can: xilinx_can: Modify the title to indicate CAN and CANFD controllers are supported
  2024-05-03  6:05 [PATCH 0/2] can: xilinx_can: Document driver description to list all supported IPs Harini T
@ 2024-05-03  6:05 ` Harini T
  2024-05-03  6:05 ` [PATCH 2/2] can: xilinx_can: Document driver description to list all supported IPs Harini T
  2024-05-05 11:03 ` [PATCH 0/2] " Marc Kleine-Budde
  2 siblings, 0 replies; 4+ messages in thread
From: Harini T @ 2024-05-03  6:05 UTC (permalink / raw)
  To: mkl, mailhol.vincent, davem, edumazet, pabeni, michal.simek,
	appana.durga.rao, kuba
  Cc: linux-can, netdev, linux-arm-kernel, linux-kernel, srinivas.goud,
	Harini T

Xilinx CAN binding documentation supports CAN and CANFD controllers.
Modify the title to indicate that both controllers are supported.

Signed-off-by: Harini T <harini.t@amd.com>
---
 Documentation/devicetree/bindings/net/can/xilinx,can.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/net/can/xilinx,can.yaml b/Documentation/devicetree/bindings/net/can/xilinx,can.yaml
index 8d4e5af6fd6c..40835497050a 100644
--- a/Documentation/devicetree/bindings/net/can/xilinx,can.yaml
+++ b/Documentation/devicetree/bindings/net/can/xilinx,can.yaml
@@ -5,7 +5,7 @@ $id: http://devicetree.org/schemas/net/can/xilinx,can.yaml#
 $schema: http://devicetree.org/meta-schemas/core.yaml#
 
 title:
-  Xilinx Axi CAN/Zynq CANPS controller
+  Xilinx CAN and CANFD controller
 
 maintainers:
   - Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
-- 
2.17.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 2/2] can: xilinx_can: Document driver description to list all supported IPs
  2024-05-03  6:05 [PATCH 0/2] can: xilinx_can: Document driver description to list all supported IPs Harini T
  2024-05-03  6:05 ` [PATCH 1/2] dt-bindings: can: xilinx_can: Modify the title to indicate CAN and CANFD controllers are supported Harini T
@ 2024-05-03  6:05 ` Harini T
  2024-05-05 11:03 ` [PATCH 0/2] " Marc Kleine-Budde
  2 siblings, 0 replies; 4+ messages in thread
From: Harini T @ 2024-05-03  6:05 UTC (permalink / raw)
  To: mkl, mailhol.vincent, davem, edumazet, pabeni, michal.simek,
	appana.durga.rao, kuba
  Cc: linux-can, netdev, linux-arm-kernel, linux-kernel, srinivas.goud,
	Harini T

Xilinx CAN driver supports AXI CAN, AXI CANFD, CANPS and CANFD PS IPs.
Document all supported IPs in comment description.

Signed-off-by: Harini T <harini.t@amd.com>
---
 drivers/net/can/xilinx_can.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/can/xilinx_can.c b/drivers/net/can/xilinx_can.c
index fae0120473f8..d944911d7f05 100644
--- a/drivers/net/can/xilinx_can.c
+++ b/drivers/net/can/xilinx_can.c
@@ -6,7 +6,7 @@
  * Copyright (C) 2017 - 2018 Sandvik Mining and Construction Oy
  *
  * Description:
- * This driver is developed for Axi CAN IP and for Zynq CANPS Controller.
+ * This driver is developed for AXI CAN IP, AXI CANFD IP, CANPS and CANFD PS Controller.
  */
 
 #include <linux/bitfield.h>
-- 
2.17.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/2] can: xilinx_can: Document driver description to list all supported IPs
  2024-05-03  6:05 [PATCH 0/2] can: xilinx_can: Document driver description to list all supported IPs Harini T
  2024-05-03  6:05 ` [PATCH 1/2] dt-bindings: can: xilinx_can: Modify the title to indicate CAN and CANFD controllers are supported Harini T
  2024-05-03  6:05 ` [PATCH 2/2] can: xilinx_can: Document driver description to list all supported IPs Harini T
@ 2024-05-05 11:03 ` Marc Kleine-Budde
  2 siblings, 0 replies; 4+ messages in thread
From: Marc Kleine-Budde @ 2024-05-05 11:03 UTC (permalink / raw)
  To: Harini T
  Cc: mailhol.vincent, davem, edumazet, pabeni, michal.simek,
	appana.durga.rao, kuba, linux-can, netdev, linux-arm-kernel,
	linux-kernel, srinivas.goud

[-- Attachment #1: Type: text/plain, Size: 581 bytes --]

On 03.05.2024 11:35:51, Harini T wrote:
> Xilinx CAN driver supports AXI CAN, AXI CANFD, CANPS and CANFD PS IPs.
> 1. Modify the dt-bindings title to indicate that both controllers are
> supported.
> 2. Document all supported IPs in driver comment description.

Applied to linux-can-next.

Thanks,
Marc

-- 
Pengutronix e.K.                 | Marc Kleine-Budde          |
Embedded Linux                   | https://www.pengutronix.de |
Vertretung Nürnberg              | Phone: +49-5121-206917-129 |
Amtsgericht Hildesheim, HRA 2686 | Fax:   +49-5121-206917-9   |

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-05-05 11:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-03  6:05 [PATCH 0/2] can: xilinx_can: Document driver description to list all supported IPs Harini T
2024-05-03  6:05 ` [PATCH 1/2] dt-bindings: can: xilinx_can: Modify the title to indicate CAN and CANFD controllers are supported Harini T
2024-05-03  6:05 ` [PATCH 2/2] can: xilinx_can: Document driver description to list all supported IPs Harini T
2024-05-05 11:03 ` [PATCH 0/2] " Marc Kleine-Budde

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®