diff options
author | 2019-07-29 13:52:29 -0600 | |
---|---|---|
committer | 2019-07-29 13:52:29 -0600 | |
commit | ac7eaef31a01258a90aa786bbce4d47b17e207c6 (patch) | |
tree | 2849d31f22193c432ee255527633a1c5fa072fca /src/peripheral/dcb.rs | |
parent | 6a213910f7f8920906c2f8882cbc1f1a3ebc3627 (diff) | |
download | cortex-m-ac7eaef31a01258a90aa786bbce4d47b17e207c6.tar.gz cortex-m-ac7eaef31a01258a90aa786bbce4d47b17e207c6.tar.zst cortex-m-ac7eaef31a01258a90aa786bbce4d47b17e207c6.zip |
Update for 2018 edition
Diffstat (limited to 'src/peripheral/dcb.rs')
-rw-r--r-- | src/peripheral/dcb.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peripheral/dcb.rs b/src/peripheral/dcb.rs index e12542c..f3b4bc2 100644 --- a/src/peripheral/dcb.rs +++ b/src/peripheral/dcb.rs @@ -3,7 +3,7 @@ use volatile_register::{RW, WO}; use core::ptr; -use peripheral::DCB; +use crate::peripheral::DCB; const DCB_DEMCR_TRCENA: u32 = 1 << 24; |