aboutsummaryrefslogtreecommitdiffstats
path: root/src/atsamd/adc.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-01-15 10:12:32 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-01-28 20:02:16 -0500
commit40b5de168048e88e6ded1259a18fb2830e8c149e (patch)
tree5b729eac15b43476169d818e0d328fc6e24ef071 /src/atsamd/adc.c
parented1334c24bc40f4baf370462496787b9ff2d703d (diff)
downloadkutter-40b5de168048e88e6ded1259a18fb2830e8c149e.tar.gz
kutter-40b5de168048e88e6ded1259a18fb2830e8c149e.tar.xz
kutter-40b5de168048e88e6ded1259a18fb2830e8c149e.zip
atsamd: Pass the power management id to enable_pclock()
Pass the power management id instead of the APBCMASK bit to the enable_pclock() function. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/atsamd/adc.c')
-rw-r--r--src/atsamd/adc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atsamd/adc.c b/src/atsamd/adc.c
index 38836592..b340c1ff 100644
--- a/src/atsamd/adc.c
+++ b/src/atsamd/adc.c
@@ -28,7 +28,7 @@ adc_init(void)
have_run_init = 1;
// Enable adc clock
- enable_pclock(ADC_GCLK_ID, PM_APBCMASK_ADC);
+ enable_pclock(ADC_GCLK_ID, ID_ADC);
// Load calibraiton info
uint32_t v = *((uint32_t*)ADC_FUSES_BIASCAL_ADDR);