Hi mtk22730, kernel test robot noticed the following build warnings: https://git-scm.com/docs/git-format-patch#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/mtk22730/spi-spi-mtk-nor-Modify-the-clock-architecture-of-nor-controller/20241212-172704 base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next patch link: https://lore.kernel.org/r/20241212092206.14071-1-Cloud.Zhang%40mediatek.com patch subject: [PATCH] [v1] spi: spi-mtk-nor: Modify the clock architecture of nor controller config: parisc-randconfig-r073-20241223 (https://download.01.org/0day-ci/archive/20241223/202412232136.cWvRuwoD-lkp@xxxxxxxxx/config) compiler: hppa-linux-gcc (GCC) 14.2.0 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@xxxxxxxxx> | Reported-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> | Closes: https://lore.kernel.org/r/202412232136.cWvRuwoD-lkp@xxxxxxxxx/ smatch warnings: drivers/spi/spi-mtk-nor.c:746 mtk_nor_parse_clk() warn: impossible condition '(cnt == -22) => (1-255 == (-22))' vim +746 drivers/spi/spi-mtk-nor.c 87d65a23444841 Cloud Zhang 2024-12-12 738 static int mtk_nor_parse_clk(struct device *dev, struct mtk_nor *sp) 87d65a23444841 Cloud Zhang 2024-12-12 739 { 87d65a23444841 Cloud Zhang 2024-12-12 740 struct device_node *np = dev->of_node; 87d65a23444841 Cloud Zhang 2024-12-12 741 int ret; 87d65a23444841 Cloud Zhang 2024-12-12 742 const char *name; 87d65a23444841 Cloud Zhang 2024-12-12 743 u8 cnt, i; ^^^^^^ 87d65a23444841 Cloud Zhang 2024-12-12 744 87d65a23444841 Cloud Zhang 2024-12-12 745 cnt = of_property_count_strings(np, "clock-names"); 87d65a23444841 Cloud Zhang 2024-12-12 @746 if (!cnt || (cnt == -EINVAL)) { ^^^^^^^^^^^^^^ cnt needs to be declared as an int. 87d65a23444841 Cloud Zhang 2024-12-12 747 dev_err(dev, "Unable to find clocks\n"); 87d65a23444841 Cloud Zhang 2024-12-12 748 ret = -EINVAL; 87d65a23444841 Cloud Zhang 2024-12-12 749 goto out; 87d65a23444841 Cloud Zhang 2024-12-12 750 } else if (cnt < 0) { ^^^^^^^ It's weird that this doesn't trigger a warning. 87d65a23444841 Cloud Zhang 2024-12-12 751 dev_err(dev, "Count clock strings failed, err %d\n", cnt); 87d65a23444841 Cloud Zhang 2024-12-12 752 ret = cnt; 87d65a23444841 Cloud Zhang 2024-12-12 753 goto out; 87d65a23444841 Cloud Zhang 2024-12-12 754 } else if (cnt > MAX_CLOCK_CNT) { 87d65a23444841 Cloud Zhang 2024-12-12 755 ret = -EINVAL; 87d65a23444841 Cloud Zhang 2024-12-12 756 goto out; 87d65a23444841 Cloud Zhang 2024-12-12 757 } 87d65a23444841 Cloud Zhang 2024-12-12 758 87d65a23444841 Cloud Zhang 2024-12-12 759 sp->clock_cnt = cnt; 87d65a23444841 Cloud Zhang 2024-12-12 760 87d65a23444841 Cloud Zhang 2024-12-12 761 for (i = 0; i < cnt; i++) { -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki