* [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
@ 2024-01-18 5:43 kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2024-01-18 5:43 UTC (permalink / raw)
Cc: oe-kbuild-all
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-01-18 5:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-18 5:43 [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 kernel 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.