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

Commit 13960b47 authored by Dinh Nguyen's avatar Dinh Nguyen Committed by Olof Johansson
Browse files

dts: Deprecate ALTR as a vendor prefix



Because most of the vendor prefixes are lower case, deprecate
the vendor prefix "ALTR" in place of "altr" for Altera Corp..

Signed-off-by: default avatarDinh Nguyen <dinguyen@altera.com>
Acked-by: default avatarStephen Warren <swarren@wwwdotorg.org>
Cc: Rob Herring <rob.herring@calxeda.com>
Cc: Pawel Moll <pawel.moll@arm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Stephen Warren <swarren@wwwdotorg.org>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: devicetree@vger.kernel.org
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent 5db17a71
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
Altera JTAG UART

Required properties:
- compatible : should be "ALTR,juart-1.0"
- compatible : should be "ALTR,juart-1.0" <DEPRECATED>
- compatible : should be "altr,juart-1.0"
+2 −1
Original line number Diff line number Diff line
Altera UART

Required properties:
- compatible : should be "ALTR,uart-1.0"
- compatible : should be "ALTR,uart-1.0" <DEPRECATED>
- compatible : should be "altr,uart-1.0"

Optional properties:
- clock-frequency : frequency of the clock input to the UART
+2 −1
Original line number Diff line number Diff line
Altera UP PS/2 controller

Required properties:
- compatible : should be "ALTR,ps2-1.0".
- compatible : should be "ALTR,ps2-1.0". <DEPRECATED>
- compatible : should be "altr,ps2-1.0".
+2 −1
Original line number Diff line number Diff line
Altera SPI

Required properties:
- compatible : should be "ALTR,spi-1.0".
- compatible : should be "ALTR,spi-1.0". <DEPRECATED>
- compatible : should be "altr,spi-1.0".
+1 −0
Original line number Diff line number Diff line
@@ -176,6 +176,7 @@ static int altera_ps2_remove(struct platform_device *pdev)
#ifdef CONFIG_OF
static const struct of_device_id altera_ps2_match[] = {
	{ .compatible = "ALTR,ps2-1.0", },
	{ .compatible = "altr,ps2-1.0", },
	{},
};
MODULE_DEVICE_TABLE(of, altera_ps2_match);
Loading