[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 1/6] hw/net/e1000e_core: Let e1000e_can_receive() return a bo
From: |
Paolo Bonzini |
Subject: |
Re: [PATCH 1/6] hw/net/e1000e_core: Let e1000e_can_receive() return a boolean |
Date: |
Fri, 6 Mar 2020 09:37:24 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1 |
On 05/03/20 18:56, Philippe Mathieu-Daudé wrote:
> The e1000e_can_receive() function simply returns a boolean value.
>
> Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
> ---
> hw/net/e1000e_core.h | 2 +-
> hw/net/e1000e_core.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/hw/net/e1000e_core.h b/hw/net/e1000e_core.h
> index 49abb136dd..aee32f7e48 100644
> --- a/hw/net/e1000e_core.h
> +++ b/hw/net/e1000e_core.h
> @@ -143,7 +143,7 @@ e1000e_core_set_link_status(E1000ECore *core);
> void
> e1000e_core_pci_uninit(E1000ECore *core);
>
> -int
> +bool
> e1000e_can_receive(E1000ECore *core);
>
> ssize_t
> diff --git a/hw/net/e1000e_core.c b/hw/net/e1000e_core.c
> index 94ea34dca5..e0bafe975b 100644
> --- a/hw/net/e1000e_core.c
> +++ b/hw/net/e1000e_core.c
> @@ -967,7 +967,7 @@ e1000e_start_recv(E1000ECore *core)
> }
> }
>
> -int
> +bool
> e1000e_can_receive(E1000ECore *core)
> {
> int i;
>
Reviewed-by: Paolo Bonzini <address@hidden>