From: kernel test robot <lkp@intel.com>
To: oe-kbuild@lists.linux.dev
Cc: lkp@intel.com, Dan Carpenter <error27@gmail.com>
Subject: drivers/clk/ingenic/jz4760-cgu.c:80 jz4760_cgu_calc_m_n_od() error: uninitialized symbol 'od'.
Date: Mon, 10 Jul 2023 09:45:23 +0800 [thread overview]
Message-ID: <202307100958.lrltYkor-lkp@intel.com> (raw)
BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
CC: linux-kernel@vger.kernel.org
TO: Paul Cercueil <paul@crapouillou.net>
CC: Stephen Boyd <sboyd@kernel.org>
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 06c2afb862f9da8dc5efa4b6076a0e48c3fbaaa5
commit: ecfb9f404771dde909ce7743df954370933c3be2 clk: ingenic: jz4760: Update M/N/OD calculation algorithm
date: 6 months ago
:::::: branch date: 5 hours ago
:::::: commit date: 6 months ago
config: mips-randconfig-m031-20230710 (https://download.01.org/0day-ci/archive/20230710/202307100958.lrltYkor-lkp@intel.com/config)
compiler: mips64el-linux-gcc (GCC) 12.3.0
reproduce: (https://download.01.org/0day-ci/archive/20230710/202307100958.lrltYkor-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>
| Reported-by: Dan Carpenter <error27@gmail.com>
| Closes: https://lore.kernel.org/r/202307100958.lrltYkor-lkp@intel.com/
smatch warnings:
drivers/clk/ingenic/jz4760-cgu.c:80 jz4760_cgu_calc_m_n_od() error: uninitialized symbol 'od'.
vim +/od +80 drivers/clk/ingenic/jz4760-cgu.c
bdbfc029374f6d Paul Cercueil 2021-05-30 55
bdbfc029374f6d Paul Cercueil 2021-05-30 56 static void
bdbfc029374f6d Paul Cercueil 2021-05-30 57 jz4760_cgu_calc_m_n_od(const struct ingenic_cgu_pll_info *pll_info,
bdbfc029374f6d Paul Cercueil 2021-05-30 58 unsigned long rate, unsigned long parent_rate,
bdbfc029374f6d Paul Cercueil 2021-05-30 59 unsigned int *pm, unsigned int *pn, unsigned int *pod)
bdbfc029374f6d Paul Cercueil 2021-05-30 60 {
ecfb9f404771dd Paul Cercueil 2022-12-14 61 unsigned int m, n, od, m_max = (1 << pll_info->m_bits) - 1;
bdbfc029374f6d Paul Cercueil 2021-05-30 62
bdbfc029374f6d Paul Cercueil 2021-05-30 63 /* The frequency after the N divider must be between 1 and 50 MHz. */
bdbfc029374f6d Paul Cercueil 2021-05-30 64 n = parent_rate / (1 * MHZ);
bdbfc029374f6d Paul Cercueil 2021-05-30 65
bdbfc029374f6d Paul Cercueil 2021-05-30 66 /* The N divider must be >= 2. */
bdbfc029374f6d Paul Cercueil 2021-05-30 67 n = clamp_val(n, 2, 1 << pll_info->n_bits);
bdbfc029374f6d Paul Cercueil 2021-05-30 68
ecfb9f404771dd Paul Cercueil 2022-12-14 69 rate /= MHZ;
ecfb9f404771dd Paul Cercueil 2022-12-14 70 parent_rate /= MHZ;
bdbfc029374f6d Paul Cercueil 2021-05-30 71
ecfb9f404771dd Paul Cercueil 2022-12-14 72 for (m = m_max; m >= m_max && n >= 2; n--) {
ecfb9f404771dd Paul Cercueil 2022-12-14 73 m = rate * n / parent_rate;
ecfb9f404771dd Paul Cercueil 2022-12-14 74 od = m & 1;
ecfb9f404771dd Paul Cercueil 2022-12-14 75 m <<= od;
bdbfc029374f6d Paul Cercueil 2021-05-30 76 }
bdbfc029374f6d Paul Cercueil 2021-05-30 77
bdbfc029374f6d Paul Cercueil 2021-05-30 78 *pm = m;
ecfb9f404771dd Paul Cercueil 2022-12-14 79 *pn = n + 1;
bdbfc029374f6d Paul Cercueil 2021-05-30 @80 *pod = 1 << od;
bdbfc029374f6d Paul Cercueil 2021-05-30 81 }
bdbfc029374f6d Paul Cercueil 2021-05-30 82
:::::: The code at line 80 was first introduced by commit
:::::: bdbfc029374f6d9ed31bc44983501fd1008b677f clk: ingenic: Add support for the JZ4760
:::::: TO: Paul Cercueil <paul@crapouillou.net>
:::::: CC: Stephen Boyd <sboyd@kernel.org>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next reply other threads:[~2023-07-10 1:46 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-10 1:45 kernel test robot [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-07-10 4:39 drivers/clk/ingenic/jz4760-cgu.c:80 jz4760_cgu_calc_m_n_od() error: uninitialized symbol 'od' kernel test robot
2023-09-17 2:27 kernel test robot
2023-09-18 17:07 kernel test robot
2023-09-19 13:54 kernel test robot
2023-09-20 17:11 kernel test robot
2023-09-22 10:49 kernel test robot
2023-09-22 17:32 kernel test robot
2023-11-22 17:34 kernel test robot
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=202307100958.lrltYkor-lkp@intel.com \
--to=lkp@intel.com \
--cc=error27@gmail.com \
--cc=oe-kbuild@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.