All of lore.kernel.org
 help / color / mirror / Atom feed
* [stffrdhrn:or1k-5.15-litex-sdcard 1/1] drivers/mmc/host/litex_mmc.c:96:6: warning: no previous prototype for 'sdclk_set_clk'
@ 2021-09-14  4:02 ` kernel test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kernel test robot @ 2021-09-14  4:02 UTC (permalink / raw)
  To: Kamil Rakoczy
  Cc: kbuild-all, linux-kernel, Stafford Horne, Maciej Dudek,
	Gabriel Somlo, Paul Mackerras

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

tree:   https://github.com/stffrdhrn/linux.git or1k-5.15-litex-sdcard
head:   9802d0ed2e47ab8b2c6c3e82c4f41591ec11f958
commit: 9802d0ed2e47ab8b2c6c3e82c4f41591ec11f958 [1/1] LiteX: driver for LiteSDCard (litex_mmc)
config: x86_64-allyesconfig (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/stffrdhrn/linux/commit/9802d0ed2e47ab8b2c6c3e82c4f41591ec11f958
        git remote add stffrdhrn https://github.com/stffrdhrn/linux.git
        git fetch --no-tags stffrdhrn or1k-5.15-litex-sdcard
        git checkout 9802d0ed2e47ab8b2c6c3e82c4f41591ec11f958
        # save the attached .config to linux build tree
        make W=1 ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> drivers/mmc/host/litex_mmc.c:96:6: warning: no previous prototype for 'sdclk_set_clk' [-Wmissing-prototypes]
      96 | void sdclk_set_clk(struct litex_mmc_host *host, unsigned int clk_freq) {
         |      ^~~~~~~~~~~~~


vim +/sdclk_set_clk +96 drivers/mmc/host/litex_mmc.c

    94	
    95	
  > 96	void sdclk_set_clk(struct litex_mmc_host *host, unsigned int clk_freq) {
    97		u32 div = clk_freq ? host->freq / clk_freq : 256;
    98		div = roundup_pow_of_two(div);
    99		div = min(max(div, (u32)2), (u32)256);
   100		dev_info(&host->dev->dev,
   101			"Requested clk_freq=%d: set to %d via div=%d\n",
   102			clk_freq, host->freq / div, div);
   103		litex_write16(host->sdphy + LITEX_MMC_SDPHY_CLOCKERDIV_OFF, div);
   104	}
   105	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [stffrdhrn:or1k-5.15-litex-sdcard 1/1] drivers/mmc/host/litex_mmc.c:96:6: warning: no previous prototype for 'sdclk_set_clk'
@ 2021-09-14  4:02 ` kernel test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kernel test robot @ 2021-09-14  4:02 UTC (permalink / raw)
  To: kbuild-all

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

tree:   https://github.com/stffrdhrn/linux.git or1k-5.15-litex-sdcard
head:   9802d0ed2e47ab8b2c6c3e82c4f41591ec11f958
commit: 9802d0ed2e47ab8b2c6c3e82c4f41591ec11f958 [1/1] LiteX: driver for LiteSDCard (litex_mmc)
config: x86_64-allyesconfig (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/stffrdhrn/linux/commit/9802d0ed2e47ab8b2c6c3e82c4f41591ec11f958
        git remote add stffrdhrn https://github.com/stffrdhrn/linux.git
        git fetch --no-tags stffrdhrn or1k-5.15-litex-sdcard
        git checkout 9802d0ed2e47ab8b2c6c3e82c4f41591ec11f958
        # save the attached .config to linux build tree
        make W=1 ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> drivers/mmc/host/litex_mmc.c:96:6: warning: no previous prototype for 'sdclk_set_clk' [-Wmissing-prototypes]
      96 | void sdclk_set_clk(struct litex_mmc_host *host, unsigned int clk_freq) {
         |      ^~~~~~~~~~~~~


vim +/sdclk_set_clk +96 drivers/mmc/host/litex_mmc.c

    94	
    95	
  > 96	void sdclk_set_clk(struct litex_mmc_host *host, unsigned int clk_freq) {
    97		u32 div = clk_freq ? host->freq / clk_freq : 256;
    98		div = roundup_pow_of_two(div);
    99		div = min(max(div, (u32)2), (u32)256);
   100		dev_info(&host->dev->dev,
   101			"Requested clk_freq=%d: set to %d via div=%d\n",
   102			clk_freq, host->freq / div, div);
   103		litex_write16(host->sdphy + LITEX_MMC_SDPHY_CLOCKERDIV_OFF, div);
   104	}
   105	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-09-14  4:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-14  4:02 [stffrdhrn:or1k-5.15-litex-sdcard 1/1] drivers/mmc/host/litex_mmc.c:96:6: warning: no previous prototype for 'sdclk_set_clk' kernel test robot
2021-09-14  4:02 ` 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.