Commit 7e7740397dc9405a8ed6299e8ebc8170142ccae7

Authored by Bin Meng
Committed by Simon Glass
1 parent 936248d92f

x86: ich-spi: Add Intel Tunnel Creek SPI controller support

Add Intel Tunnel Creek SPI controller support which is an ICH7
compatible device.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

... ... @@ -167,7 +167,8 @@
167 167 */
168 168 static int get_ich_version(uint16_t device_id)
169 169 {
170   - if (device_id == PCI_DEVICE_ID_INTEL_TGP_LPC)
  170 + if (device_id == PCI_DEVICE_ID_INTEL_TGP_LPC ||
  171 + device_id == PCI_DEVICE_ID_INTEL_ITC_LPC)
171 172 return 7;
172 173  
173 174 if ((device_id >= PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MIN &&