Commit 1ae14f35 authored by Shenghao Ding's avatar Shenghao Ding Committed by Mark Brown

ASoC: tas2781: Fix a warning reported by robot kernel test

Fix a warning reported by robot kernel test that 'fw_entry' in function
'tas2781_load_calibration' is used uninitialized with compiler
sh4-linux-gcc (GCC) 13.2.0, an update of copyright and a correction of the
comments.

Fixes: ef3bcde7 ("ASoc: tas2781: Add tas2781 driver")
Signed-off-by: default avatarShenghao Ding <shenghao-ding@ti.com>
Link: https://lore.kernel.org/r/20240505122346.1326-1-shenghao-ding@ti.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent ba2a2c37
// SPDX-License-Identifier: GPL-2.0 // SPDX-License-Identifier: GPL-2.0
// //
// tasdevice-fmw.c -- TASDEVICE firmware support // tas2781-fmwlib.c -- TASDEVICE firmware support
// //
// Copyright 2023 Texas Instruments, Inc. // Copyright 2023 - 2024 Texas Instruments, Inc.
// //
// Author: Shenghao Ding <shenghao-ding@ti.com> // Author: Shenghao Ding <shenghao-ding@ti.com>
...@@ -1878,7 +1878,7 @@ int tas2781_load_calibration(void *context, char *file_name, ...@@ -1878,7 +1878,7 @@ int tas2781_load_calibration(void *context, char *file_name,
{ {
struct tasdevice_priv *tas_priv = (struct tasdevice_priv *)context; struct tasdevice_priv *tas_priv = (struct tasdevice_priv *)context;
struct tasdevice *tasdev = &(tas_priv->tasdevice[i]); struct tasdevice *tasdev = &(tas_priv->tasdevice[i]);
const struct firmware *fw_entry; const struct firmware *fw_entry = NULL;
struct tasdevice_fw *tas_fmw; struct tasdevice_fw *tas_fmw;
struct firmware fmw; struct firmware fmw;
int offset = 0; int offset = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment