diff options
author | Sean Nelson <audiohacked@gmail.com> | 2010-08-15 14:36:18 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-08-15 14:36:18 +0000 |
commit | d110739bf0d3edb9d01e9f0d07f76fa9bda0f096 (patch) | |
tree | 24105668ab3657f0ca36d6987362c461247275d3 | |
parent | 859cfd70d8c9773404702bc2cbe6307fc81e6f5d (diff) | |
download | flashrom-d110739bf0d3edb9d01e9f0d07f76fa9bda0f096.zip flashrom-d110739bf0d3edb9d01e9f0d07f76fa9bda0f096.tar.gz |
Mark the board-enable for ASUS A8N-LA (HP OEM "Nagami-GL8E") as tested
Change the DMI string to only match this exact board (DMI "NAGAMI2L")
as only this one is tested.
Similar HP OEM boards might also work using this board-enable but that's
not sure and not tested. Two of those boards have DMI strings "NAGAMI"
and "NAGAMI2".
Corresponding to flashrom svn r1140.
Signed-off-by: Sean Nelson <audiohacked@gmail.com>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
-rw-r--r-- | board_enable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board_enable.c b/board_enable.c index 5e0294b..76a02a0 100644 --- a/board_enable.c +++ b/board_enable.c @@ -848,7 +848,7 @@ static int nvidia_mcp_gpio_set(int gpio, int raise) /* * Suited for: - * - ASUS A8N-LA: NVIDIA MCP51 + * - ASUS A8N-LA (HP OEM "Nagami-GL8E"): NVIDIA MCP51 * - ASUS M2NBP-VM CSM: NVIDIA MCP51 */ static int nvidia_mcp_gpio0_raise(void) @@ -1759,7 +1759,7 @@ const struct board_pciid_enable board_pciid_enables[] = { {0x1106, 0x3189, 0x1043, 0x807F, 0x1106, 0x3177, 0x1043, 0x808C, NULL, NULL, NULL, "ASUS", "A7V8X", 0, OK, board_asus_a7v8x}, {0x1106, 0x3189, 0x1043, 0x807F, 0x1106, 0x3177, 0x1043, 0x80A1, NULL, NULL, NULL, "ASUS", "A7V8X-X", 0, OK, it8712f_gpio3_1_raise}, {0x8086, 0x27A0, 0x1043, 0x1287, 0x8086, 0x27DF, 0x1043, 0x1287, "^A8J", NULL, NULL, "ASUS", "A8JM", 0, NT, intel_ich_gpio34_raise}, - {0x10DE, 0x0260, 0x103c, 0x2a3e, 0x10DE, 0x0264, 0x103c, 0x2a3e, "NAGAMI", NULL, NULL, "ASUS", "A8N-LA", 0, NT, nvidia_mcp_gpio0_raise}, + {0x10DE, 0x0260, 0x103c, 0x2a3e, 0x10DE, 0x0264, 0x103c, 0x2a3e, "NAGAMI2L", NULL, NULL, "ASUS", "A8N-LA (Nagami-GL8E)", 0, OK, nvidia_mcp_gpio0_raise}, {0x10DE, 0x005E, 0x1043, 0x815A, 0x10DE, 0x0054, 0x1043, 0x815A, NULL, NULL, NULL, "ASUS", "A8N", 0, NT, board_shuttle_fn25}, {0x10de, 0x0264, 0x1043, 0x81bc, 0x10de, 0x02f0, 0x1043, 0x81cd, NULL, NULL, NULL, "ASUS", "A8N-VM CSM", 0, NT, w83627ehf_gpio24_raise_2e}, {0x10DE, 0x0264, 0x1043, 0x81C0, 0x10DE, 0x0260, 0x1043, 0x81C0, NULL, NULL, NULL, "ASUS", "M2NBP-VM CSM", 0, OK, nvidia_mcp_gpio0_raise}, |