All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
Cc: tiwai@suse.de, alsa-devel@alsa-project.org, broonie@kernel.org,
	kbuild-all@01.org,
	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Subject: Re: [PATCH v2] ASoC: Intel: bytcr_rt5640: fallback mechanism if MCLK is not enabled
Date: Fri, 16 Dec 2016 14:18:30 +0800	[thread overview]
Message-ID: <201612161454.X1I8fMoR%fengguang.wu@intel.com> (raw)
In-Reply-To: <1481833154-4688-1-git-send-email-pierre-louis.bossart@linux.intel.com>

[-- Attachment #1: Type: text/plain, Size: 1981 bytes --]

Hi Pierre-Louis,

[auto build test WARNING on asoc/for-next]
[also build test WARNING on v4.9 next-20161215]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Pierre-Louis-Bossart/ASoC-Intel-bytcr_rt5640-fallback-mechanism-if-MCLK-is-not-enabled/20161216-125957
base:   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
config: x86_64-randconfig-s2-12161323 (attached as .config)
compiler: gcc-4.4 (Debian 4.4.7-8) 4.4.7
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All warnings (new ones prefixed by >>):

   sound/soc/intel/boards/bytcr_rt5640.c: In function 'snd_byt_rt5640_mc_probe':
>> sound/soc/intel/boards/bytcr_rt5640.c:832: warning: format '%ld' expects type 'long int', but argument 3 has type 'int'

vim +832 sound/soc/intel/boards/bytcr_rt5640.c

   816			/* fixup cpu dai name name */
   817			snprintf(byt_rt5640_cpu_dai_name,
   818				sizeof(byt_rt5640_cpu_dai_name),
   819				"%s", "ssp0-port");
   820	
   821			byt_rt5640_dais[dai_index].cpu_dai_name =
   822				byt_rt5640_cpu_dai_name;
   823		}
   824	
   825		if ((byt_rt5640_quirk & BYT_RT5640_MCLK_EN) && (is_valleyview())) {
   826			priv->mclk = devm_clk_get(&pdev->dev, "pmc_plt_clk_3");
   827			if (IS_ERR(priv->mclk)) {
   828				ret_val = PTR_ERR(priv->mclk);
   829	
   830				dev_err(&pdev->dev,
   831					"Failed to get MCLK from pmc_plt_clk_3: %ld\n",
 > 832					ret_val);
   833	
   834				/*
   835				 * Fall back to bit clock usage for -ENOENT (clock not
   836				 * available likely due to missing dependencies), bail
   837				 * for all other errors, including -EPROBE_DEFER
   838				 */
   839				if (ret_val != -ENOENT)
   840					return ret_val;

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 25169 bytes --]

[-- Attachment #3: Type: text/plain, Size: 0 bytes --]



      parent reply	other threads:[~2016-12-16  6:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-15 20:19 [PATCH v2] ASoC: Intel: bytcr_rt5640: fallback mechanism if MCLK is not enabled Pierre-Louis Bossart
2016-12-16  6:00 ` kbuild test robot
2016-12-16  6:18 ` kbuild test robot [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201612161454.X1I8fMoR%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=kbuild-all@01.org \
    --cc=pierre-louis.bossart@linux.intel.com \
    --cc=tiwai@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.