summaryrefslogtreecommitdiffstats
path: root/it87spi.c
diff options
context:
space:
mode:
Diffstat (limited to 'it87spi.c')
-rw-r--r--it87spi.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/it87spi.c b/it87spi.c
index 46779ee..5fe74ce 100644
--- a/it87spi.c
+++ b/it87spi.c
@@ -129,10 +129,8 @@ static uint16_t it87spi_probe(uint16_t port)
enter_conf_mode_ite(port);
/* NOLDN, reg 0x24, mask out lowest bit (suspend) */
tmp = sio_read(port, 0x24) & 0xFE;
- /* If IT87SPI was not explicitly selected, we want to check
- * quickly if LPC->SPI translation is active.
- */
- if ((programmer == PROGRAMMER_INTERNAL) && !(tmp & (0x0E))) {
+ /* Check if LPC->SPI translation is active. */
+ if (!(tmp & 0x0e)) {
msg_pdbg("No IT87* serial flash segment enabled.\n");
exit_conf_mode_ite(port);
/* Nothing to do. */
OpenPOWER on IntegriCloud