From: Jeeja KP Date: Tue, 27 Oct 2015 00:22:47 +0000 (+0900) Subject: ASoC: Intel: Skylake: Fix to ignore codec_mask check in probe X-Git-Tag: v4.5-rc1~80^2~26^2~1^2~6^4~98 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=029890c67ae6f95c3f7d84af9b7e555515b33193;p=karo-tx-linux.git ASoC: Intel: Skylake: Fix to ignore codec_mask check in probe We have both I2S and hda codec support in the driver. codec_mask check is relevant only for hda codec and some boards may have only I2S Codec, so removed probe error in case no hda codec is found and update the log to info as it may not be error. Signed-off-by: Jeeja KP Signed-off-by: Vinod Koul Signed-off-by: Mark Brown --- diff --git a/sound/soc/intel/skylake/skl.c b/sound/soc/intel/skylake/skl.c index 5319529aedf7..211ef6e2fa21 100644 --- a/sound/soc/intel/skylake/skl.c +++ b/sound/soc/intel/skylake/skl.c @@ -434,8 +434,7 @@ static int skl_first_init(struct hdac_ext_bus *ebus) /* codec detection */ if (!bus->codec_mask) { - dev_err(bus->dev, "no codecs found!\n"); - return -ENODEV; + dev_info(bus->dev, "no hda codecs found!\n"); } return 0;