summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-07-01 10:55:47 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-07-01 10:55:47 +0000
commita550b07886f8c3b2eda624c02970bc6e93773f57 (patch)
tree7c98c1c9139444c012e47b2e6bd0787730ba6ef4 /firmware/drivers
parent756e74538f19e541a403b711085629080e0c67a8 (diff)
downloadrockbox-a550b07886f8c3b2eda624c02970bc6e93773f57.tar.gz
rockbox-a550b07886f8c3b2eda624c02970bc6e93773f57.zip
Removed TAB chars
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1280 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/adc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/adc.c b/firmware/drivers/adc.c
index 6008c14ed6..861be80987 100644
--- a/firmware/drivers/adc.c
+++ b/firmware/drivers/adc.c
@@ -39,7 +39,7 @@ static void adc_tick(void)
39 /* Start a conversion on the next channel */ 39 /* Start a conversion on the next channel */
40 current_channel++; 40 current_channel++;
41 if(current_channel == NUM_ADC_CHANNELS) 41 if(current_channel == NUM_ADC_CHANNELS)
42 current_channel = 0; 42 current_channel = 0;
43 ADCSR = ADCSR_ADST | current_channel; 43 ADCSR = ADCSR_ADST | current_channel;
44} 44}
45 45