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 53DF1C43334 for ; Sun, 12 Jun 2022 23:09:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237693AbiFLXJ3 (ORCPT ); Sun, 12 Jun 2022 19:09:29 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43932 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231327AbiFLXJ0 (ORCPT ); Sun, 12 Jun 2022 19:09:26 -0400 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 01C743B002 for ; Sun, 12 Jun 2022 16:09:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655075366; x=1686611366; h=date:from:to:cc:subject:message-id:mime-version; bh=BiMk322ckNOUCUFzTA+jboAqgWdVgtD60ZpgYQ4+lqc=; b=AqPRUJcfI1yB74rIY4cL1S2HuXIHmy5c7sz4EUOFrJNWfrK94BgmFrWB YhvWqDCjy56CF9VX1ET9+yJRIAhuba2STXqaGggYuSvjQJ81mUoGMpUxw TDeb0c1oQaYLE2atM2922rJoKR5VTeD285kXl+v8Nsa0CLqgoyvTrT+5I QHrmTWMSq6KsjBLqVHKYOmiuEUX0a9PlMUo2sQa2IlloNZYZ9/C9U/oxk Mq+sotdjPShMmspxFUFDbOHt4DWlNhKzDO1b+u08dNiYqdgagIq8nn7Fr r3QVM6/7mEcdDkG73cKq1fY50q0mIhhXtBOj+q+DzDL4HOGMiDpQiIdVz w==; X-IronPort-AV: E=McAfee;i="6400,9594,10376"; a="342096608" X-IronPort-AV: E=Sophos;i="5.91,296,1647327600"; d="scan'208";a="342096608" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Jun 2022 16:09:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,296,1647327600"; d="scan'208";a="829389303" Received: from lkp-server01.sh.intel.com (HELO 60dabacc1df6) ([10.239.97.150]) by fmsmga006.fm.intel.com with ESMTP; 12 Jun 2022 16:09:23 -0700 Received: from kbuild by 60dabacc1df6 with local (Exim 4.95) (envelope-from ) id 1o0Whu-000KIv-Ge; Sun, 12 Jun 2022 23:09:22 +0000 Date: Mon, 13 Jun 2022 07:08:34 +0800 From: kernel test robot To: Watson Chow Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org, Mark Brown , Laurent Pinchart Subject: drivers/regulator/max20086-regulator.c:288:34: warning: 'max20086_dt_ids' defined but not used Message-ID: <202206130733.bcMd66i2-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 Hi Watson, FYI, the error/warning still remains. tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 997952851843935024962b51fc36c61b3c2d1ed4 commit: bfff546aae50ae68ed395bf0e0848188d27b0ba3 regulator: Add MAX20086-MAX20089 driver date: 5 months ago config: i386-randconfig-r012-20220613 (https://download.01.org/0day-ci/archive/20220613/202206130733.bcMd66i2-lkp@intel.com/config) compiler: gcc-11 (Debian 11.3.0-3) 11.3.0 reproduce (this is a W=1 build): # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=bfff546aae50ae68ed395bf0e0848188d27b0ba3 git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git git fetch --no-tags linus master git checkout bfff546aae50ae68ed395bf0e0848188d27b0ba3 # save the config file mkdir build_dir && cp config build_dir/.config make W=1 O=build_dir ARCH=i386 SHELL=/bin/bash drivers/regulator/ If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot All warnings (new ones prefixed by >>): >> drivers/regulator/max20086-regulator.c:288:34: warning: 'max20086_dt_ids' defined but not used [-Wunused-const-variable=] 288 | static const struct of_device_id max20086_dt_ids[] = { | ^~~~~~~~~~~~~~~ vim +/max20086_dt_ids +288 drivers/regulator/max20086-regulator.c 287 > 288 static const struct of_device_id max20086_dt_ids[] = { 289 { 290 .compatible = "maxim,max20086", 291 .data = &(const struct max20086_chip_info) { 292 .id = MAX20086_DEVICE_ID_MAX20086, 293 .num_outputs = 4, 294 } 295 }, { 296 .compatible = "maxim,max20087", 297 .data = &(const struct max20086_chip_info) { 298 .id = MAX20086_DEVICE_ID_MAX20087, 299 .num_outputs = 4, 300 } 301 }, { 302 .compatible = "maxim,max20088", 303 .data = &(const struct max20086_chip_info) { 304 .id = MAX20086_DEVICE_ID_MAX20088, 305 .num_outputs = 2, 306 } 307 }, { 308 .compatible = "maxim,max20089", 309 .data = &(const struct max20086_chip_info) { 310 .id = MAX20086_DEVICE_ID_MAX20089, 311 .num_outputs = 2, 312 } 313 }, 314 { /* Sentinel */ }, 315 }; 316 -- 0-DAY CI Kernel Test Service https://01.org/lkp