mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
hv: fix return type of hv_post_message()
This function returns negative error codes, but because the type is u16 they get truncated into positive numbers. It doesn't look like the callers care, but we should fix it anyway as a cleanup. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0034102808
commit
415f0a02ad
2 changed files with 2 additions and 2 deletions
|
@ -252,7 +252,7 @@ void hv_cleanup(void)
|
|||
*
|
||||
* This involves a hypercall.
|
||||
*/
|
||||
u16 hv_post_message(union hv_connection_id connection_id,
|
||||
int hv_post_message(union hv_connection_id connection_id,
|
||||
enum hv_message_type message_type,
|
||||
void *payload, size_t payload_size)
|
||||
{
|
||||
|
|
|
@ -495,7 +495,7 @@ extern int hv_init(void);
|
|||
|
||||
extern void hv_cleanup(void);
|
||||
|
||||
extern u16 hv_post_message(union hv_connection_id connection_id,
|
||||
extern int hv_post_message(union hv_connection_id connection_id,
|
||||
enum hv_message_type message_type,
|
||||
void *payload, size_t payload_size);
|
||||
|
||||
|
|
Loading…
Reference in a new issue