All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: [jsarha:topic/cros-sof-v4.14 8743/9354] drivers/soc/tegra/pmc.c:577:1: warning: the frame size of 1192 bytes is larger than 1024 bytes
Date: Thu, 18 Jan 2024 13:43:58 +0800	[thread overview]
Message-ID: <202401181313.EvaigORf-lkp@intel.com> (raw)

tree:   https://github.com/jsarha/linux topic/cros-sof-v4.14
head:   6f750b16c322c9191168a3a97c427c90581d9144
commit: 475748fe0956ae57d9b85a01d4deacbe6f4f7217 [8743/9354] UPSTREAM: PM / Domain: Add struct device to genpd
config: arm-randconfig-004-20240118 (https://download.01.org/0day-ci/archive/20240118/202401181313.EvaigORf-lkp@intel.com/config)
compiler: arm-linux-gnueabi-gcc (GCC) 7.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240118/202401181313.EvaigORf-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202401181313.EvaigORf-lkp@intel.com/

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 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
    }
    ^


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

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

                 reply	other threads:[~2024-01-18  5:44 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=202401181313.EvaigORf-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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.