diff options
author | Amaury Pouly <amaury.pouly@gmail.com> | 2013-11-19 21:28:35 +0000 |
---|---|---|
committer | Amaury Pouly <amaury.pouly@gmail.com> | 2013-11-19 21:28:35 +0000 |
commit | 0cb76defd3c311e9dd4c16257c16a2d7daada87a (patch) | |
tree | cc36e32382828eeeb19204f2f3b4d9a723117183 | |
parent | 0c394770aa5f82331e9173922d3cef9162f6958d (diff) | |
download | rockbox-0cb76defd3c311e9dd4c16257c16a2d7daada87a.tar.gz rockbox-0cb76defd3c311e9dd4c16257c16a2d7daada87a.zip |
Fix red
Change-Id: Iaf77dd0ac6af921f67f883064f490a9e9c7d36b0
-rw-r--r-- | bootloader/imx233.c | 7 |
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 @@ #include "version.h" #include "powermgmt.h" #include "partitions-imx233.h" -#include "adc-imx233.h" +#include "adc.h" #include "usb.h" @@ -111,11 +111,6 @@ static void usb_mode(int connect_timeout) lcd_putsf(0, 9, "%s: %d 'C [%d, %d]", MSG(240, "Die", "Die temp"), adc_read(ADC_DIE_TEMP), IMX233_DIE_TEMP_HIGH, IMX233_DIE_TEMP_LOW); - #ifdef ADC_BATT_TEMP - lcd_putsf(0, 10, "%s: %d 'C [%d, %d]", MSG(240, "Batt", "Batt temp"), - adc_read(ADC_BATT_TEMP), IMX233_BATT_TEMP_HIGH, - IMX233_BATT_TEMP_LOW); - #endif lcd_update(); } } |