svn commit: r272602 - head/sys/dev/uart

Ganbold Tsagaankhuu ganbold at FreeBSD.org
Mon Oct 6 09:00:54 UTC 2014


Author: ganbold
Date: Mon Oct  6 09:00:53 2014
New Revision: 272602
URL: https://svnweb.freebsd.org/changeset/base/272602

Log:
  Use documented compat string for msm uart.
  Whilst here use tab instead of spaces.
  
  Approved by:    stas (mentor)

Modified:
  head/sys/dev/uart/uart_bus_fdt.c

Modified: head/sys/dev/uart/uart_bus_fdt.c
==============================================================================
--- head/sys/dev/uart/uart_bus_fdt.c	Mon Oct  6 07:29:17 2014	(r272601)
+++ head/sys/dev/uart/uart_bus_fdt.c	Mon Oct  6 09:00:53 2014	(r272602)
@@ -84,7 +84,7 @@ static struct ofw_compat_data compat_dat
 	{"fsl,imx21-uart",	(uintptr_t)&uart_imx_class},
 	{"fsl,mvf600-uart",	(uintptr_t)&uart_vybrid_class},
 	{"lpc,uart",		(uintptr_t)&uart_lpc_class},
-        {"qcom,uart-dm",        (uintptr_t)&uart_msm_class},
+	{"qcom,msm-uartdm",	(uintptr_t)&uart_msm_class},
 	{"ti,ns16550",		(uintptr_t)&uart_ti8250_class},
 	{"ns16550",		(uintptr_t)&uart_ns8250_class},
 	{NULL,			(uintptr_t)NULL},


More information about the svn-src-all mailing list