File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -333,13 +333,13 @@ macro_rules! opamps {
333
333
#[ inline( always) ]
334
334
unsafe fn _disable_output( ) {
335
335
( * crate :: stm32:: OPAMP :: ptr( ) ) . [ <$opampreg _csr>] ( ) . modify( |_, w|
336
- w. opaintoen( ) . adcchannel( ) )
336
+ w. opaintoen( ) . adcchannel( ) ) ;
337
337
}
338
338
339
339
#[ inline( always) ]
340
340
unsafe fn _enable_output( ) {
341
341
( * crate :: stm32:: OPAMP :: ptr( ) ) . [ <$opampreg _csr>] ( ) . modify( |_, w|
342
- w. opaintoen( ) . output_pin( ) )
342
+ w. opaintoen( ) . output_pin( ) ) ;
343
343
}
344
344
345
345
#[ inline( always) ]
@@ -352,7 +352,7 @@ macro_rules! opamps {
352
352
// the user doesn't want anything changing if they care to set
353
353
// the lock bit.
354
354
( * crate :: stm32:: OPAMP :: ptr( ) ) . [ <$opampreg _tcmr>] ( ) . modify( |_, w|
355
- w. lock( ) . set_bit( ) )
355
+ w. lock( ) . set_bit( ) ) ;
356
356
}
357
357
}
358
358
You can’t perform that action at this time.
0 commit comments