ASoC: Intel: use correct firmware name

The firmware name was used worngly, so fix it up

Signed-off-by: Fang, Yang A <yang.a.fang@intel.com>
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Fang, Yang A 2014-10-30 16:20:57 +05:30 committed by Mark Brown
parent 6e9b05607f
commit 5794b7ec62
1 changed files with 1 additions and 4 deletions

View File

@ -344,12 +344,9 @@ void sst_firmware_load_cb(const struct firmware *fw, void *context)
static int sst_request_fw(struct intel_sst_drv *sst)
{
int retval = 0;
char name[20];
const struct firmware *fw;
dev_dbg(sst->dev, "Requesting FW %s now...\n", name);
retval = request_firmware(&fw, name, sst->dev);
retval = request_firmware(&fw, sst->firmware_name, sst->dev);
if (fw == NULL) {
dev_err(sst->dev, "fw is returning as null\n");
return -EINVAL;