diff options
author | Jacob Garber <jgarber1@ualberta.ca> | 2020-08-28 12:48:32 -0600 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2020-08-29 10:10:04 +0000 |
commit | 0e787b2e79ce838031b63666bc3c319788ee6a7e (patch) | |
tree | 56e0a07bcb2c2fe8ef4f01b2992fda9c62a13b62 | |
parent | f33f1a11793e00b88b69de8463f1336ae17d6218 (diff) | |
download | flashrom-0e787b2e79ce838031b63666bc3c319788ee6a7e.tar.gz flashrom-0e787b2e79ce838031b63666bc3c319788ee6a7e.tar.bz2 flashrom-0e787b2e79ce838031b63666bc3c319788ee6a7e.zip |
chipset_enable: Mark Intel Q77 as DEP
Tested reading and writing internal flash on Dell Optiplex 9010 SFF.
Signed-off-by: Jacob Garber <jgarber1@ualberta.ca>
Change-Id: I4717959be1b79aa986f1276589d01ce7475bda8f
Reviewed-on: https://review.coreboot.org/c/flashrom/+/44910
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
-rw-r--r-- | chipset_enable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chipset_enable.c b/chipset_enable.c index 5fc222b2..96d9df38 100644 --- a/chipset_enable.c +++ b/chipset_enable.c @@ -1830,7 +1830,7 @@ const struct penable chipset_enables[] = { {0x8086, 0x1d41, B_FS, DEP, "Intel", "C60x/X79", enable_flash_pch6}, {0x8086, 0x1e44, B_FS, DEP, "Intel", "Z77", enable_flash_pch7}, {0x8086, 0x1e46, B_FS, NT, "Intel", "Z75", enable_flash_pch7}, - {0x8086, 0x1e47, B_FS, NT, "Intel", "Q77", enable_flash_pch7}, + {0x8086, 0x1e47, B_FS, DEP, "Intel", "Q77", enable_flash_pch7}, {0x8086, 0x1e48, B_FS, DEP, "Intel", "Q75", enable_flash_pch7}, {0x8086, 0x1e49, B_FS, DEP, "Intel", "B75", enable_flash_pch7}, {0x8086, 0x1e4a, B_FS, DEP, "Intel", "H77", enable_flash_pch7}, |