diff options
author | Michael Kelley <[email protected]> | 2021-03-10 10:47:49 -0800 |
---|---|---|
committer | Wei Liu <[email protected]> | 2021-03-11 10:12:22 +0000 |
commit | a620bbaa3510a6f14f6643bf232390ad1c821c80 (patch) | |
tree | f7d8acaf6d906ed0da4207e03a405c5bb190a119 | |
parent | ec866be6ec547c9e1cc4451f04250e08b5fe67c7 (diff) |
asm-generic/hyperv: Add missing function prototypes per -W1 warnings
Add two function prototypes for -W1 warnings generated by the
kernel test robot.
Reported-by: kernel test robot <[email protected]>
Signed-off-by: Michael Kelley <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Wei Liu <[email protected]>
-rw-r--r-- | include/asm-generic/mshyperv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-generic/mshyperv.h b/include/asm-generic/mshyperv.h index 69e7fe0254cf..2d1b6cd9f000 100644 --- a/include/asm-generic/mshyperv.h +++ b/include/asm-generic/mshyperv.h @@ -94,6 +94,8 @@ static inline void vmbus_signal_eom(struct hv_message *msg, u32 old_msg_type) void hv_setup_vmbus_handler(void (*handler)(void)); void hv_remove_vmbus_handler(void); +void hv_setup_stimer0_handler(void (*handler)(void)); +void hv_remove_stimer0_handler(void); void hv_setup_kexec_handler(void (*handler)(void)); void hv_remove_kexec_handler(void); |