From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 09E93C3DA58 for ; Thu, 17 Aug 2023 18:48:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1354551AbjHQSrv (ORCPT ); Thu, 17 Aug 2023 14:47:51 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48712 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1354556AbjHQSrk (ORCPT ); Thu, 17 Aug 2023 14:47:40 -0400 Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.136]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 36DFF2D59 for ; Thu, 17 Aug 2023 11:47:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1692298059; x=1723834059; h=date:from:to:cc:subject:message-id:mime-version; bh=O0gnxjopY6iwpnarsS5okryFAdhWEJyN24allt66AsI=; b=QQYJFHu7+lUJRvqUfI/gb268BFtoS+mIB8IZAeqD069TlB3yQbJukus4 bKtaUvUe+uglWUe3f+v7PCUSECnvHxJn8u9VOKupX0SxKS21ZXSyQAFLQ O8Wm8+Rq3zFtBwlZTa4Kpq0Kp0TxezxQExhcRm2iIWpp4qL6jPuKZqXzL pyaPliQXiPiI+8hdoQGDJEY+wxtWuL8HcTz0vjvmZu8ROq0yfhu0URuTh IazNQw1jn8D18Pt2X3M/auNPQtqVS/U5sg8j6FDlorwVClXtK5yJFpi3T BOuYLGNbAtrjKM+igBj4HoPPhyjnRz6dYYj5S9x8N/QHayfQ8qT5uGeq1 Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10805"; a="352487483" X-IronPort-AV: E=Sophos;i="6.01,180,1684825200"; d="scan'208";a="352487483" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Aug 2023 11:47:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10805"; a="908523367" X-IronPort-AV: E=Sophos;i="6.01,180,1684825200"; d="scan'208";a="908523367" Received: from lkp-server02.sh.intel.com (HELO a9caf1a0cf30) ([10.239.97.151]) by orsmga005.jf.intel.com with ESMTP; 17 Aug 2023 11:47:37 -0700 Received: from kbuild by a9caf1a0cf30 with local (Exim 4.96) (envelope-from ) id 1qWi1w-0001OR-1Q; Thu, 17 Aug 2023 18:47:36 +0000 Date: Fri, 18 Aug 2023 02:46:50 +0800 From: kernel test robot To: Daniel Lezcano Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org Subject: drivers/thermal/max77620_thermal.c:48: warning: Function parameter or member 'tz' not described in 'max77620_thermal_read_temp' Message-ID: <202308180208.Gd4T0y3o-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 16931859a6500d360b90aeacab3b505a3560a3ed commit: f59ac19b7f44cab23df84810e2da5f57bdd3a7e7 thermal/of: Remove old OF code date: 1 year ago config: i386-buildonly-randconfig-r006-20230817 (https://download.01.org/0day-ci/archive/20230818/202308180208.Gd4T0y3o-lkp@intel.com/config) compiler: clang version 16.0.4 (https://github.com/llvm/llvm-project.git ae42196bc493ffe877a7e3dff8be32035dea4d07) reproduce: (https://download.01.org/0day-ci/archive/20230818/202308180208.Gd4T0y3o-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 | Closes: https://lore.kernel.org/oe-kbuild-all/202308180208.Gd4T0y3o-lkp@intel.com/ All warnings (new ones prefixed by >>): >> drivers/thermal/max77620_thermal.c:48: warning: Function parameter or member 'tz' not described in 'max77620_thermal_read_temp' >> drivers/thermal/max77620_thermal.c:48: warning: Excess function parameter 'data' description in 'max77620_thermal_read_temp' vim +48 drivers/thermal/max77620_thermal.c ec4664b3fd6d56 Laxman Dewangan 2016-08-23 32 ec4664b3fd6d56 Laxman Dewangan 2016-08-23 33 /** ec4664b3fd6d56 Laxman Dewangan 2016-08-23 34 * max77620_thermal_read_temp: Read PMIC die temperatue. ec4664b3fd6d56 Laxman Dewangan 2016-08-23 35 * @data: Device specific data. 0f43e646dddd60 Amit Kucheria 2019-11-20 36 * @temp: Temperature in millidegrees Celsius ec4664b3fd6d56 Laxman Dewangan 2016-08-23 37 * ec4664b3fd6d56 Laxman Dewangan 2016-08-23 38 * The actual temperature of PMIC die is not available from PMIC. ec4664b3fd6d56 Laxman Dewangan 2016-08-23 39 * PMIC only tells the status if it has crossed or not the threshold level ec4664b3fd6d56 Laxman Dewangan 2016-08-23 40 * of 120degC or 140degC. ec4664b3fd6d56 Laxman Dewangan 2016-08-23 41 * If threshold has not been crossed then assume die temperature as 100degC ec4664b3fd6d56 Laxman Dewangan 2016-08-23 42 * else 120degC or 140deG based on the PMIC die temp threshold status. ec4664b3fd6d56 Laxman Dewangan 2016-08-23 43 * ec4664b3fd6d56 Laxman Dewangan 2016-08-23 44 * Return 0 on success otherwise error number to show reason of failure. ec4664b3fd6d56 Laxman Dewangan 2016-08-23 45 */ ec4664b3fd6d56 Laxman Dewangan 2016-08-23 46 ae11d6a87c3e74 Daniel Lezcano 2022-08-05 47 static int max77620_thermal_read_temp(struct thermal_zone_device *tz, int *temp) ec4664b3fd6d56 Laxman Dewangan 2016-08-23 @48 { ae11d6a87c3e74 Daniel Lezcano 2022-08-05 49 struct max77620_therm_info *mtherm = tz->devdata; ec4664b3fd6d56 Laxman Dewangan 2016-08-23 50 unsigned int val; ec4664b3fd6d56 Laxman Dewangan 2016-08-23 51 int ret; ec4664b3fd6d56 Laxman Dewangan 2016-08-23 52 ec4664b3fd6d56 Laxman Dewangan 2016-08-23 53 ret = regmap_read(mtherm->rmap, MAX77620_REG_STATLBT, &val); ec4664b3fd6d56 Laxman Dewangan 2016-08-23 54 if (ret < 0) { ec4664b3fd6d56 Laxman Dewangan 2016-08-23 55 dev_err(mtherm->dev, "Failed to read STATLBT: %d\n", ret); ec4664b3fd6d56 Laxman Dewangan 2016-08-23 56 return ret; ec4664b3fd6d56 Laxman Dewangan 2016-08-23 57 } ec4664b3fd6d56 Laxman Dewangan 2016-08-23 58 ec4664b3fd6d56 Laxman Dewangan 2016-08-23 59 if (val & MAX77620_IRQ_TJALRM2_MASK) ec4664b3fd6d56 Laxman Dewangan 2016-08-23 60 *temp = MAX77620_TJALARM2_TEMP; ec4664b3fd6d56 Laxman Dewangan 2016-08-23 61 else if (val & MAX77620_IRQ_TJALRM1_MASK) ec4664b3fd6d56 Laxman Dewangan 2016-08-23 62 *temp = MAX77620_TJALARM1_TEMP; ec4664b3fd6d56 Laxman Dewangan 2016-08-23 63 else ec4664b3fd6d56 Laxman Dewangan 2016-08-23 64 *temp = MAX77620_NORMAL_OPERATING_TEMP; ec4664b3fd6d56 Laxman Dewangan 2016-08-23 65 ec4664b3fd6d56 Laxman Dewangan 2016-08-23 66 return 0; ec4664b3fd6d56 Laxman Dewangan 2016-08-23 67 } ec4664b3fd6d56 Laxman Dewangan 2016-08-23 68 :::::: The code at line 48 was first introduced by commit :::::: ec4664b3fd6d565a79eb562e4339528f74eb1cca thermal: max77620: Add thermal driver for reporting junction temp :::::: TO: Laxman Dewangan :::::: CC: Zhang Rui -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki