All of lore.kernel.org
 help / color / mirror / Atom feed
* [vireshk:opp/genpd/updates 6/10] drivers/soc/tegra/pmc.c:577:1: warning: the frame size of 1184 bytes is larger than 1024 bytes
@ 2017-12-22 13:28 kbuild test robot
  0 siblings, 0 replies; only message in thread
From: kbuild test robot @ 2017-12-22 13:28 UTC (permalink / raw)
  To: Viresh Kumar; +Cc: kbuild-all, linux-pm

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

tree:   https://git.linaro.org/people/vireshk/linux opp/genpd/updates
head:   46a62463d9a0a04648672d5cd3a9803ad99bd36b
commit: a7867661e9bc6f5b1571f60398266ef678ccc1c0 [6/10] PM / Domain: Add struct device to genpd
config: arm-allmodconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (Debian 7.2.0-11) 7.2.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        git checkout a7867661e9bc6f5b1571f60398266ef678ccc1c0
        # save the attached .config to linux build tree
        make.cross ARCH=arm 

All warnings (new ones prefixed by >>):

   drivers/soc/tegra/pmc.c: In function 'tegra_powergate_sequence_power_up':
>> drivers/soc/tegra/pmc.c:577:1: warning: the frame size of 1184 bytes is larger than 1024 bytes [-Wframe-larger-than=]
    }
    ^

vim +577 drivers/soc/tegra/pmc.c

7232398ab Thierry Reding 2014-07-11  548  
7232398ab Thierry Reding 2014-07-11  549  /**
7232398ab Thierry Reding 2014-07-11  550   * tegra_powergate_sequence_power_up() - power up partition
7232398ab Thierry Reding 2014-07-11  551   * @id: partition ID
7232398ab Thierry Reding 2014-07-11  552   * @clk: clock for partition
7232398ab Thierry Reding 2014-07-11  553   * @rst: reset for partition
7232398ab Thierry Reding 2014-07-11  554   *
7232398ab Thierry Reding 2014-07-11  555   * Must be called with clk disabled, and returns with clk enabled.
7232398ab Thierry Reding 2014-07-11  556   */
70293ed09 Jon Hunter     2016-02-11  557  int tegra_powergate_sequence_power_up(unsigned int id, struct clk *clk,
7232398ab Thierry Reding 2014-07-11  558  				      struct reset_control *rst)
7232398ab Thierry Reding 2014-07-11  559  {
a38045121 Jon Hunter     2016-03-30  560  	struct tegra_powergate pg;
a38045121 Jon Hunter     2016-03-30  561  	int err;
7232398ab Thierry Reding 2014-07-11  562  
403db2d21 Jon Hunter     2016-06-28  563  	if (!tegra_powergate_is_available(id))
403db2d21 Jon Hunter     2016-06-28  564  		return -EINVAL;
403db2d21 Jon Hunter     2016-06-28  565  
a38045121 Jon Hunter     2016-03-30  566  	pg.id = id;
a38045121 Jon Hunter     2016-03-30  567  	pg.clks = &clk;
a38045121 Jon Hunter     2016-03-30  568  	pg.num_clks = 1;
a38045121 Jon Hunter     2016-03-30  569  	pg.resets = &rst;
a38045121 Jon Hunter     2016-03-30  570  	pg.num_resets = 1;
7232398ab Thierry Reding 2014-07-11  571  
a38045121 Jon Hunter     2016-03-30  572  	err = tegra_powergate_power_up(&pg, false);
a38045121 Jon Hunter     2016-03-30  573  	if (err)
a38045121 Jon Hunter     2016-03-30  574  		pr_err("failed to turn on partition %d: %d\n", id, err);
7232398ab Thierry Reding 2014-07-11  575  
a38045121 Jon Hunter     2016-03-30  576  	return err;
7232398ab Thierry Reding 2014-07-11 @577  }
7232398ab Thierry Reding 2014-07-11  578  EXPORT_SYMBOL(tegra_powergate_sequence_power_up);
7232398ab Thierry Reding 2014-07-11  579  

:::::: The code at line 577 was first introduced by commit
:::::: 7232398abc6a7186e315425638c367d50c674718 ARM: tegra: Convert PMC to a driver

:::::: TO: Thierry Reding <treding@nvidia.com>
:::::: CC: Thierry Reding <treding@nvidia.com>

---
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: 64637 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-12-22 13:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-22 13:28 [vireshk:opp/genpd/updates 6/10] drivers/soc/tegra/pmc.c:577:1: warning: the frame size of 1184 bytes is larger than 1024 bytes kbuild test robot

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.