Fix entry macro for ULP hal (#1488)

This commit is contained in:
Dominic Fischer 2024-04-22 15:42:10 +01:00 committed by GitHub
parent 5f79be6c9b
commit 866933bf6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -507,7 +507,7 @@ pub fn entry(args: TokenStream, input: TokenStream) -> TokenStream {
FoundCrate::Itself => quote!(esp_lp_hal),
FoundCrate::Name(name) => {
let ident = Ident::new(&name, Span::call_site());
quote!( #ident::Something )
quote!( #ident )
}
};