Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Dinh Nguyen <dinguyen@altera.com>
Acked-by: Stephen 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: Olof Johansson <olof@lixom.net>

authored by

Dinh Nguyen and committed by
Olof Johansson
13960b47 5db17a71

+12 -4
+2 -1
Documentation/devicetree/bindings/serial/altera_jtaguart.txt
··· 1 1 Altera JTAG UART 2 2 3 3 Required properties: 4 - - compatible : should be "ALTR,juart-1.0" 4 + - compatible : should be "ALTR,juart-1.0" <DEPRECATED> 5 + - compatible : should be "altr,juart-1.0"
+2 -1
Documentation/devicetree/bindings/serial/altera_uart.txt
··· 1 1 Altera UART 2 2 3 3 Required properties: 4 - - compatible : should be "ALTR,uart-1.0" 4 + - compatible : should be "ALTR,uart-1.0" <DEPRECATED> 5 + - compatible : should be "altr,uart-1.0" 5 6 6 7 Optional properties: 7 8 - clock-frequency : frequency of the clock input to the UART
+2 -1
Documentation/devicetree/bindings/serio/altera_ps2.txt
··· 1 1 Altera UP PS/2 controller 2 2 3 3 Required properties: 4 - - compatible : should be "ALTR,ps2-1.0". 4 + - compatible : should be "ALTR,ps2-1.0". <DEPRECATED> 5 + - compatible : should be "altr,ps2-1.0".
+2 -1
Documentation/devicetree/bindings/spi/spi_altera.txt
··· 1 1 Altera SPI 2 2 3 3 Required properties: 4 - - compatible : should be "ALTR,spi-1.0". 4 + - compatible : should be "ALTR,spi-1.0". <DEPRECATED> 5 + - compatible : should be "altr,spi-1.0".
+1
drivers/input/serio/altera_ps2.c
··· 176 176 #ifdef CONFIG_OF 177 177 static const struct of_device_id altera_ps2_match[] = { 178 178 { .compatible = "ALTR,ps2-1.0", }, 179 + { .compatible = "altr,ps2-1.0", }, 179 180 {}, 180 181 }; 181 182 MODULE_DEVICE_TABLE(of, altera_ps2_match);
+1
drivers/spi/spi-altera.c
··· 302 302 #ifdef CONFIG_OF 303 303 static const struct of_device_id altera_spi_match[] = { 304 304 { .compatible = "ALTR,spi-1.0", }, 305 + { .compatible = "altr,spi-1.0", }, 305 306 {}, 306 307 }; 307 308 MODULE_DEVICE_TABLE(of, altera_spi_match);
+1
drivers/tty/serial/altera_jtaguart.c
··· 470 470 #ifdef CONFIG_OF 471 471 static struct of_device_id altera_jtaguart_match[] = { 472 472 { .compatible = "ALTR,juart-1.0", }, 473 + { .compatible = "altr,juart-1.0", }, 473 474 {}, 474 475 }; 475 476 MODULE_DEVICE_TABLE(of, altera_jtaguart_match);
+1
drivers/tty/serial/altera_uart.c
··· 613 613 #ifdef CONFIG_OF 614 614 static struct of_device_id altera_uart_match[] = { 615 615 { .compatible = "ALTR,uart-1.0", }, 616 + { .compatible = "altr,uart-1.0", }, 616 617 {}, 617 618 }; 618 619 MODULE_DEVICE_TABLE(of, altera_uart_match);