Re: [PATCH] hpimsgx: fix wrong sizeof

From: Takashi Iwai
Date: Wed Jul 28 2010 - 05:54:13 EST


At Wed, 28 Jul 2010 16:58:42 +0800,
Axel Lin wrote:
>
> The correct size should be sizeof(gRESP_HPI_SUBSYS_FIND_ADAPTERS),
> sizeof(&gRESP_HPI_SUBSYS_FIND_ADAPTERS) is incorrect.
>
> Signed-off-by: Axel Lin <axel.lin@xxxxxxxxx>

Applied now. Thanks.


Takashi

> ---
> sound/pci/asihpi/hpimsgx.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/sound/pci/asihpi/hpimsgx.c b/sound/pci/asihpi/hpimsgx.c
> index 2ee90dc..f01ab96 100644
> --- a/sound/pci/asihpi/hpimsgx.c
> +++ b/sound/pci/asihpi/hpimsgx.c
> @@ -741,7 +741,7 @@ static void HPIMSGX__reset(u16 adapter_index)
> hpi_init_response(&hr, HPI_OBJ_SUBSYSTEM,
> HPI_SUBSYS_FIND_ADAPTERS, 0);
> memcpy(&gRESP_HPI_SUBSYS_FIND_ADAPTERS, &hr,
> - sizeof(&gRESP_HPI_SUBSYS_FIND_ADAPTERS));
> + sizeof(gRESP_HPI_SUBSYS_FIND_ADAPTERS));
>
> for (adapter = 0; adapter < HPI_MAX_ADAPTERS; adapter++) {
>
> --
> 1.5.4.3
>
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/