Skip to content

Commit 947714e

Browse files
bors[bot]hug-dev
andauthored
Merge #198
198: Remove unnecessary parenthesis r=jonas-schievink a=hug-dev Otherwise Cargo complains! This should fix the CI for #193 and #189 Co-authored-by: Hugues de Valon <[email protected]>
2 parents 319773e + 426ef11 commit 947714e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/peripheral/scb.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,8 @@ impl VectActive {
305305

306306
#[cfg(not(armv6m))]
307307
mod scb_consts {
308-
pub const SCB_CCR_IC_MASK: u32 = (1 << 17);
309-
pub const SCB_CCR_DC_MASK: u32 = (1 << 16);
308+
pub const SCB_CCR_IC_MASK: u32 = 1 << 17;
309+
pub const SCB_CCR_DC_MASK: u32 = 1 << 16;
310310
}
311311

312312
#[cfg(not(armv6m))]

0 commit comments

Comments
 (0)