@@ -465,7 +465,7 @@ pub struct ACR {
465465impl ACR {
466466 pub ( crate ) fn acr ( & mut self ) -> & flash:: ACR {
467467 // NOTE(unsafe) this proxy grants exclusive access to this register
468- unsafe { & ( * FLASH :: ptr ( ) ) . acr ( ) }
468+ unsafe { ( * FLASH :: ptr ( ) ) . acr ( ) }
469469 }
470470}
471471
@@ -478,7 +478,7 @@ pub struct CR {
478478impl CR {
479479 pub ( crate ) fn cr ( & mut self ) -> & flash:: CR {
480480 // NOTE(unsafe) this proxy grants exclusive access to this register
481- unsafe { & ( * FLASH :: ptr ( ) ) . cr ( ) }
481+ unsafe { ( * FLASH :: ptr ( ) ) . cr ( ) }
482482 }
483483}
484484
@@ -491,7 +491,7 @@ pub struct ECCR {
491491impl ECCR {
492492 pub ( crate ) fn eccr ( & mut self ) -> & flash:: ECCR {
493493 // NOTE(unsafe) this proxy grants exclusive access to this register
494- unsafe { & ( * FLASH :: ptr ( ) ) . eccr ( ) }
494+ unsafe { ( * FLASH :: ptr ( ) ) . eccr ( ) }
495495 }
496496}
497497
@@ -504,7 +504,7 @@ pub struct KEYR {
504504impl KEYR {
505505 pub ( crate ) fn keyr ( & mut self ) -> & flash:: KEYR {
506506 // NOTE(unsafe) this proxy grants exclusive access to this register
507- unsafe { & ( * FLASH :: ptr ( ) ) . keyr ( ) }
507+ unsafe { ( * FLASH :: ptr ( ) ) . keyr ( ) }
508508 }
509509}
510510
@@ -517,7 +517,7 @@ pub struct OPTKEYR {
517517impl OPTKEYR {
518518 pub ( crate ) fn optkeyr ( & mut self ) -> & flash:: OPTKEYR {
519519 // NOTE(unsafe) this proxy grants exclusive access to this register
520- unsafe { & ( * FLASH :: ptr ( ) ) . optkeyr ( ) }
520+ unsafe { ( * FLASH :: ptr ( ) ) . optkeyr ( ) }
521521 }
522522}
523523
@@ -530,7 +530,7 @@ pub struct OPTR {
530530impl OPTR {
531531 pub ( crate ) fn optr ( & mut self ) -> & flash:: OPTR {
532532 // NOTE(unsafe) this proxy grants exclusive access to this register
533- unsafe { & ( * FLASH :: ptr ( ) ) . optr ( ) }
533+ unsafe { ( * FLASH :: ptr ( ) ) . optr ( ) }
534534 }
535535}
536536
@@ -543,7 +543,7 @@ pub struct PCROP1SR {
543543impl PCROP1SR {
544544 pub ( crate ) fn pcrop1sr ( & mut self ) -> & flash:: PCROP1SR {
545545 // NOTE(unsafe) this proxy grants exclusive access to this register
546- unsafe { & ( * FLASH :: ptr ( ) ) . pcrop1sr ( ) }
546+ unsafe { ( * FLASH :: ptr ( ) ) . pcrop1sr ( ) }
547547 }
548548}
549549
@@ -556,7 +556,7 @@ pub struct PCROP1ER {
556556impl PCROP1ER {
557557 pub ( crate ) fn pcrop1er ( & mut self ) -> & flash:: PCROP1ER {
558558 // NOTE(unsafe) this proxy grants exclusive access to this register
559- unsafe { & ( * FLASH :: ptr ( ) ) . pcrop1er ( ) }
559+ unsafe { ( * FLASH :: ptr ( ) ) . pcrop1er ( ) }
560560 }
561561}
562562
@@ -569,7 +569,7 @@ pub struct PDKEYR {
569569impl PDKEYR {
570570 pub ( crate ) fn pdkeyr ( & mut self ) -> & flash:: PDKEYR {
571571 // NOTE(unsafe) this proxy grants exclusive access to this register
572- unsafe { & ( * FLASH :: ptr ( ) ) . pdkeyr ( ) }
572+ unsafe { ( * FLASH :: ptr ( ) ) . pdkeyr ( ) }
573573 }
574574}
575575
@@ -582,7 +582,7 @@ pub struct SEC1R {
582582impl SEC1R {
583583 pub ( crate ) fn sec1r ( & mut self ) -> & flash:: SEC1R {
584584 // NOTE(unsafe) this proxy grants exclusive access to this register
585- unsafe { & ( * FLASH :: ptr ( ) ) . sec1r ( ) }
585+ unsafe { ( * FLASH :: ptr ( ) ) . sec1r ( ) }
586586 }
587587}
588588
@@ -595,7 +595,7 @@ pub struct SR {
595595impl SR {
596596 pub ( crate ) fn sr ( & mut self ) -> & flash:: SR {
597597 // NOTE(unsafe) this proxy grants exclusive access to this register
598- unsafe { & ( * FLASH :: ptr ( ) ) . sr ( ) }
598+ unsafe { ( * FLASH :: ptr ( ) ) . sr ( ) }
599599 }
600600}
601601
@@ -608,7 +608,7 @@ pub struct WRP1AR {
608608impl WRP1AR {
609609 pub ( crate ) fn wrp1ar ( & mut self ) -> & flash:: WRP1AR {
610610 // NOTE(unsafe) this proxy grants exclusive access to this register
611- unsafe { & ( * FLASH :: ptr ( ) ) . wrp1ar ( ) }
611+ unsafe { ( * FLASH :: ptr ( ) ) . wrp1ar ( ) }
612612 }
613613}
614614
@@ -621,6 +621,6 @@ pub struct WRP1BR {
621621impl WRP1BR {
622622 pub ( crate ) fn wrp1br ( & mut self ) -> & flash:: WRP1BR {
623623 // NOTE(unsafe) this proxy grants exclusive access to this register
624- unsafe { & ( * FLASH :: ptr ( ) ) . wrp1br ( ) }
624+ unsafe { ( * FLASH :: ptr ( ) ) . wrp1br ( ) }
625625 }
626626}
0 commit comments