From 727c7fa9c1163ff8453aa08a9ebb53053b39dd18 Mon Sep 17 00:00:00 2001 From: Grant Likely Date: Wed, 20 Dec 2017 11:13:48 +0000 Subject: [PATCH] Revert change to fsl,mpc8641 example Commit 7d888a01, "Aesthetic/grammar fixes to first part of devicetree-basics.rst" changed one of the Freescale compatible examples from "fsl,mpc8641-uart" to "fsl,ns16550". However, there is value in using examples from real hardware when possible, and to also show that different strings (mpc8641-uart vs. ns16550) for a device is normal, so revert that hunk. Signed-off-by: Grant Likely Cc: Robert P. J. Day --- source/devicetree-basics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/devicetree-basics.rst b/source/devicetree-basics.rst index f007a4b..1900cc8 100644 --- a/source/devicetree-basics.rst +++ b/source/devicetree-basics.rst @@ -469,10 +469,10 @@ Description: Example: - ``compatible = "fsl,ns16550", "ns16550";`` + ``compatible = "fsl,mpc8641", "ns16550";`` In this example, an operating system would first try to locate a device - driver that supported fsl,ns16550. If a driver was not found, it + driver that supported fsl,mpc8641. If a driver was not found, it would then try to locate a driver that supported the more general ns16550 device type.