Update the Rust toolchain to nightly-2020-06-10.
This toolchain update renamed `asm` to `llvm_asm`, and should have the new `asm` syntax. I simply renamed `asm` to `llvm_asm` in this commit. I will sent PRs later that refactor the system call interface and entry point; those PRs will replace the use cases of `llvm_asm` with the new `asm`.
diff --git a/src/hmac.rs b/src/hmac.rs
index e5475cc..5185128 100644
--- a/src/hmac.rs
+++ b/src/hmac.rs
@@ -99,7 +99,7 @@
syscalls::allow(DRIVER_NUMBER, allow_nr::DEST, &mut buffer.buffer).map_err(Into::into)
}
- pub fn subscribe<CB: FnMut(usize, usize) -> () + FnMut(usize, usize)>(
+ pub fn subscribe<CB: FnMut(usize, usize)>(
&self,
callback: &'a mut CB,
) -> TockResult<CallbackSubscription> {