Commit 5da38086bd6c39efd09e57900702b99541844339

Authored by Simon Glass
1 parent 053b86e6d8

x86: dts: Add compatible string for Intel ICH9 SPI controller

Add this to the enum so that we can use the various fdtdec functions. A
later commit will move this driver to driver model.

Signed-off-by: Simon Glass <sjg@chromium.org>

Showing 2 changed files with 2 additions and 0 deletions Side-by-side Diff

... ... @@ -173,6 +173,7 @@
173 173 COMPAT_INTEL_MODEL_206AX, /* Intel Model 206AX CPU */
174 174 COMPAT_INTEL_GMA, /* Intel Graphics Media Accelerator */
175 175 COMPAT_AMS_AS3722, /* AMS AS3722 PMIC */
  176 + COMPAT_INTEL_ICH_SPI, /* Intel ICH7/9 SPI controller */
176 177  
177 178 COMPAT_COUNT,
178 179 };
... ... @@ -83,6 +83,7 @@
83 83 COMPAT(INTEL_MODEL_206AX, "intel,model-206ax"),
84 84 COMPAT(INTEL_GMA, "intel,gma"),
85 85 COMPAT(AMS_AS3722, "ams,as3722"),
  86 + COMPAT(INTEL_ICH_SPI, "intel,ich-spi"),
86 87 };
87 88  
88 89 const char *fdtdec_get_compatible(enum fdt_compat_id id)