diff options
| author | Julia Lawall <Julia.Lawall@inria.fr> | 2025-12-30 15:14:14 +0100 |
|---|---|---|
| committer | Wei Liu <wei.liu@kernel.org> | 2026-01-15 07:00:13 +0000 |
| commit | fc558188f251f5df6dd11ac409d668733d9baac7 (patch) | |
| tree | c4ead981f32e4c84f6faede8f7c8ecf7e0642695 /drivers/hv | |
| parent | 173d6f64f9558ff022a777a72eb8669b6cdd2649 (diff) | |
Drivers: hv: vmbus: fix typo in function name reference
Replace cmxchg by cmpxchg.
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Reviewed-by: Roman Kisel <vdso@mailbox.org>
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Diffstat (limited to 'drivers/hv')
| -rw-r--r-- | drivers/hv/hyperv_vmbus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hv/hyperv_vmbus.h b/drivers/hv/hyperv_vmbus.h index b2862e0a317a..cdbc5f5c3215 100644 --- a/drivers/hv/hyperv_vmbus.h +++ b/drivers/hv/hyperv_vmbus.h @@ -375,7 +375,7 @@ static inline void vmbus_signal_eom(struct hv_message *msg, u32 old_msg_type) return; /* - * The cmxchg() above does an implicit memory barrier to + * The cmpxchg() above does an implicit memory barrier to * ensure the write to MessageType (ie set to * HVMSG_NONE) happens before we read the * MessagePending and EOMing. Otherwise, the EOMing |
