summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-01-10 21:39:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-01-10 21:39:51 +0000
commita79cda0d065d978e4ab5e1854de35d1364107c92 (patch)
treeff0e9784d1946ac1cc6b059c27629ea442a2eb6c /firmware/drivers
parentd3e107cd2a23c4a92b8739559df29337e3f68b8b (diff)
downloadrockbox-a79cda0d065d978e4ab5e1854de35d1364107c92.tar.gz
rockbox-a79cda0d065d978e4ab5e1854de35d1364107c92.zip
Jean-Philippe Bernardy: removed bad emu_debugf() call
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5552 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/adc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/firmware/drivers/adc.c b/firmware/drivers/adc.c
index 5ef5f76a31..bb8242e37f 100644
--- a/firmware/drivers/adc.c
+++ b/firmware/drivers/adc.c
@@ -226,7 +226,6 @@ static void adc_tick(void)
226 if (ADCON & (1 << 3)) { 226 if (ADCON & (1 << 3)) {
227 /* previous conversion finished? */ 227 /* previous conversion finished? */
228 adcdata[current_channel] = ADDATA >> 6; 228 adcdata[current_channel] = ADDATA >> 6;
229 emu_debugf("ADC[%x] = %x", current_channel, adcdata[current_channel]);
230 if (++current_channel_idx >= CHANNEL_ORDER_SIZE) 229 if (++current_channel_idx >= CHANNEL_ORDER_SIZE)
231 current_channel_idx = 0; 230 current_channel_idx = 0;
232 current_channel = channel_order[current_channel_idx]; 231 current_channel = channel_order[current_channel_idx];