summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootloader/imx233.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/bootloader/imx233.c b/bootloader/imx233.c
index af8db4e78f..6c68ab04f7 100644
--- a/bootloader/imx233.c
+++ b/bootloader/imx233.c
@@ -43,7 +43,7 @@
43#include "version.h" 43#include "version.h"
44#include "powermgmt.h" 44#include "powermgmt.h"
45#include "partitions-imx233.h" 45#include "partitions-imx233.h"
46#include "adc-imx233.h" 46#include "adc.h"
47 47
48#include "usb.h" 48#include "usb.h"
49 49
@@ -111,11 +111,6 @@ static void usb_mode(int connect_timeout)
111 lcd_putsf(0, 9, "%s: %d 'C [%d, %d]", MSG(240, "Die", "Die temp"), 111 lcd_putsf(0, 9, "%s: %d 'C [%d, %d]", MSG(240, "Die", "Die temp"),
112 adc_read(ADC_DIE_TEMP), IMX233_DIE_TEMP_HIGH, 112 adc_read(ADC_DIE_TEMP), IMX233_DIE_TEMP_HIGH,
113 IMX233_DIE_TEMP_LOW); 113 IMX233_DIE_TEMP_LOW);
114 #ifdef ADC_BATT_TEMP
115 lcd_putsf(0, 10, "%s: %d 'C [%d, %d]", MSG(240, "Batt", "Batt temp"),
116 adc_read(ADC_BATT_TEMP), IMX233_BATT_TEMP_HIGH,
117 IMX233_BATT_TEMP_LOW);
118 #endif
119 lcd_update(); 114 lcd_update();
120 } 115 }
121 } 116 }