Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2f7b4b25 authored by Balachandra C S's avatar Balachandra C S Committed by Gerrit - the friendly Code Review server
Browse files

net: can: Remove the RH850 CAN driver



Remove RH850 driver as the unified QTI CAN controller driver will
replace it supporting multiple vendor's CAN controllers.

Change-Id: I1b9791b9b1a84ccb6f6d7fbfaca72be6cc7dd25f
Signed-off-by: default avatarBalachandra C S <balacs@codeaurora.org>
parent 72eb8a71
Loading
Loading
Loading
Loading
+0 −21
Original line number Diff line number Diff line
* Renesas RH850 CAN *

This driver implements spi slave protocol for rh850 can controller

Required properties:
  - compatible: Should be "renesas,rh850"
  - reg: Should contain spi chip select
  - interrupt-parent: Should specify interrupt controller for the interrupt
  - interrupts: Should contain IRQ line for the CAN controller
  - spi-max-frequency: Should contain maximum spi clock frequency for
                       slave device

Example:

	can-controller@0 {
		compatible = "renesas,rh850";
		reg = <0>;
		interrupt-parent = <&tlmm>;
		interrupts = <127 0>;
		spi-max-frequency = <5000000>;
	};
+0 −1
Original line number Diff line number Diff line
@@ -213,7 +213,6 @@ CONFIG_RMNET_DATA_DEBUG_PKT=y
CONFIG_SOCKEV_NLMCAST=y
CONFIG_CAN=y
CONFIG_CAN_VCAN=y
CONFIG_CAN_RH850=y
CONFIG_CAN_PEAK_USB=y
CONFIG_BT=y
CONFIG_BT_RFCOMM=y
+0 −1
Original line number Diff line number Diff line
@@ -214,7 +214,6 @@ CONFIG_RMNET_DATA_DEBUG_PKT=y
CONFIG_SOCKEV_NLMCAST=y
CONFIG_CAN=y
CONFIG_CAN_VCAN=y
CONFIG_CAN_RH850=y
CONFIG_CAN_PEAK_USB=y
CONFIG_BT=y
CONFIG_BT_RFCOMM=y
+0 −6
Original line number Diff line number Diff line
@@ -7,12 +7,6 @@ config CAN_MCP251X
	---help---
	  Driver for the Microchip MCP251x SPI CAN controllers.

config CAN_RH850
	tristate "Renesas RH850 SPI CAN controller"
	depends on HAS_DMA
	---help---
	  Driver for the Renesas RH850 SPI CAN controller.

config CAN_K61
	tristate "Freescale K61 SPI CAN controllers"
	depends on SPI
+0 −1
Original line number Diff line number Diff line
@@ -4,6 +4,5 @@


obj-$(CONFIG_CAN_MCP251X)	+= mcp251x.o
obj-$(CONFIG_CAN_RH850)		+= rh850.o
obj-${CONFIG_CAN_K61}		+= k61.o
obj-$(CONFIG_QTI_CAN)		+= qti-can.o
Loading