diff --git a/sound/soc/tegra-alt/tegra210_i2s_alt.c b/sound/soc/tegra-alt/tegra210_i2s_alt.c index fe4221c0..ee482f27 100644 --- a/sound/soc/tegra-alt/tegra210_i2s_alt.c +++ b/sound/soc/tegra-alt/tegra210_i2s_alt.c @@ -1,7 +1,7 @@ /* * tegra210_i2s.c - Tegra210 I2S driver * - * Copyright (c) 2014-2017 NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2014-2018 NVIDIA CORPORATION. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, @@ -1177,14 +1177,14 @@ static int tegra210_i2s_platform_probe(struct platform_device *pdev) i2s->pin_default_state = pinctrl_lookup_state(i2s->pinctrl, "dap_active"); if (IS_ERR(i2s->pin_default_state)) { - dev_warn(&pdev->dev, "Missing dap-active state\n"); + dev_dbg(&pdev->dev, "Missing dap-active state\n"); goto err_dap; } i2s->pin_idle_state = pinctrl_lookup_state(i2s->pinctrl, "dap_inactive"); if (IS_ERR(i2s->pin_idle_state)) { - dev_warn(&pdev->dev, "Missing dap-inactive state\n"); + dev_dbg(&pdev->dev, "Missing dap-inactive state\n"); goto err_dap; }