diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-02-05 23:42:26 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-02-06 12:07:43 -0700 |
commit | c89ada017fe24891818c08a9e4b7c5ae4a9224e5 (patch) | |
tree | de15fe4e6f193734097ae77582ded4bbe55e6074 /lib | |
parent | 236b711e89b529758ab474660b936140dbab3842 (diff) | |
download | u-boot-imx-c89ada017fe24891818c08a9e4b7c5ae4a9224e5.zip u-boot-imx-c89ada017fe24891818c08a9e4b7c5ae4a9224e5.tar.gz u-boot-imx-c89ada017fe24891818c08a9e4b7c5ae4a9224e5.tar.bz2 |
fdtdec: Add compatible id and string for Intel Quark MRC
Add COMPAT_INTEL_QRK_MRC and "intel,quark-mrc" so that fdtdec can
decode Intel Quark MRC node.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fdtdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c index 5bf8f29..dd58bbb 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -75,6 +75,7 @@ static const char * const compat_names[COMPAT_COUNT] = { COMPAT(INTEL_GMA, "intel,gma"), COMPAT(AMS_AS3722, "ams,as3722"), COMPAT(INTEL_ICH_SPI, "intel,ich-spi"), + COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"), }; const char *fdtdec_get_compatible(enum fdt_compat_id id) |