@@ -4,7 +4,7 @@ macro_rules! rsr {
44 impl super :: super :: sealed:: Rsr for $R {
55 unsafe fn __rsr( & self ) -> u32 {
66 let r: u32 ;
7- asm!( concat!( "mrs {}," , stringify!( $R) ) , out( reg) r, options( nomem, nostack) ) ;
7+ crate :: arch :: asm!( concat!( "mrs {}," , stringify!( $R) ) , out( reg) r, options( nomem, nostack) ) ;
88 r
99 }
1010 }
@@ -17,7 +17,7 @@ macro_rules! rsrp {
1717 impl super :: super :: sealed:: Rsrp for $R {
1818 unsafe fn __rsrp( & self ) -> * const u8 {
1919 let r: * const u8 ;
20- asm!( concat!( "mrs {}," , stringify!( $R) ) , out( reg) r, options( nomem, nostack) ) ;
20+ crate :: arch :: asm!( concat!( "mrs {}," , stringify!( $R) ) , out( reg) r, options( nomem, nostack) ) ;
2121 r
2222 }
2323 }
@@ -29,7 +29,7 @@ macro_rules! wsr {
2929 ( $R: ident) => {
3030 impl super :: super :: sealed:: Wsr for $R {
3131 unsafe fn __wsr( & self , value: u32 ) {
32- asm!( concat!( "msr " , stringify!( $R) , ", {}" ) , in( reg) value, options( nomem, nostack) ) ;
32+ crate :: arch :: asm!( concat!( "msr " , stringify!( $R) , ", {}" ) , in( reg) value, options( nomem, nostack) ) ;
3333 }
3434 }
3535 } ;
@@ -40,7 +40,7 @@ macro_rules! wsrp {
4040 ( $R: ident) => {
4141 impl super :: super :: sealed:: Wsrp for $R {
4242 unsafe fn __wsrp( & self , value: * const u8 ) {
43- asm!( concat!( "msr " , stringify!( $R) , ", {}" ) , in( reg) value, options( nomem, nostack) ) ;
43+ crate :: arch :: asm!( concat!( "msr " , stringify!( $R) , ", {}" ) , in( reg) value, options( nomem, nostack) ) ;
4444 }
4545 }
4646 } ;
0 commit comments