summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mainboard/google/kukui/boardid.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/mainboard/google/kukui/boardid.c b/src/mainboard/google/kukui/boardid.c
index 71f051f312..ad066666cb 100644
--- a/src/mainboard/google/kukui/boardid.c
+++ b/src/mainboard/google/kukui/boardid.c
@@ -82,15 +82,7 @@ static uint32_t get_adc_index(unsigned int channel)
for (id = 0; id < ADC_LEVELS - 1; id++)
if (value < (voltages[id] + voltages[id + 1]) / 2)
break;
-
- /* The last level is NC and may be larger than standard tolerance. */
- const int tolerance = 10000; /* 10,000 uV */
- if (id < ADC_LEVELS - 1 && ABS(value - voltages[id]) > tolerance) {
- printk(BIOS_ERR, "ADC channel %u value out of range: %d\n",
- channel, value);
- assert(0);
- }
-
+ printk(BIOS_DEBUG, "ADC[%d]: Raw value=%d ID=%d\n", channel, value, id);
return id;
}