From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 24D511FA1 for ; Thu, 21 Apr 2022 06:41:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650523314; x=1682059314; h=date:from:to:cc:subject:message-id:mime-version; bh=zKZ9mXo/IsCsqWsSTAs5IdoMaOWSvfasXoUrG6/DhNw=; b=GC5yh1UIZxSEg79HJHna0c8/3vjGV8mEHxsnxleWgDQOG/NoGa/elxHf 4TZslUYXuRewU+ZyptwI0HZqG4JGNDcfOhVNJLT9vR3tTsfIF9eYYGtwx KBzG+gSyShaJ5JFdYu1fRjjHVumgVdLNPL0y9EddvpNb/nYYLg88FXnrQ FpZdA7bzjZ9L1+6c8KzoqlgWmeuHIIWmezXrfEKZ5Uf/fVQ6fG0TwNDk5 XbO0j9WiJlJg8YdRy+6mM5C+cwoOEUTJ4v81Lp8/0PSbQDigwBfg+fupk 1KEyhD5BOOVxrkDByRSg6KkyhInrLCrCy7s6X1jtzS5YiCLmWXzImM72W A==; X-IronPort-AV: E=McAfee;i="6400,9594,10323"; a="324700182" X-IronPort-AV: E=Sophos;i="5.90,278,1643702400"; d="scan'208";a="324700182" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Apr 2022 23:41:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,278,1643702400"; d="scan'208";a="626387058" Received: from lkp-server01.sh.intel.com (HELO 3abc53900bec) ([10.239.97.150]) by fmsmga004.fm.intel.com with ESMTP; 20 Apr 2022 23:41:50 -0700 Received: from kbuild by 3abc53900bec with local (Exim 4.95) (envelope-from ) id 1nhQVi-0007yx-39; Thu, 21 Apr 2022 06:41:50 +0000 Date: Thu, 21 Apr 2022 14:40:53 +0800 From: kernel test robot To: Mauro Carvalho Chehab Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, linux-kernel@vger.kernel.org, linux-media@vger.kernel.org Subject: drivers/media/platform/marvell/mmp-driver.c:364:34: warning: unused variable 'mmpcam_of_match' Message-ID: <202204202236.9C50njLR-lkp@intel.com> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Mauro, First bad commit (maybe != root cause): tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 559089e0a93d44280ec3ab478830af319c56dbe3 commit: dc7bbea90075b57772e9a28043061bf71d96f06f media: platform: rename marvell-ccic/ to marvell/ date: 5 weeks ago config: hexagon-buildonly-randconfig-r001-20220420 (https://download.01.org/0day-ci/archive/20220420/202204202236.9C50njLR-lkp@intel.com/config) compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project bac6cd5bf85669e3376610cfc4c4f9ca015e7b9b) reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=dc7bbea90075b57772e9a28043061bf71d96f06f git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git git fetch --no-tags linus master git checkout dc7bbea90075b57772e9a28043061bf71d96f06f # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=hexagon SHELL=/bin/bash drivers/media/platform/marvell/ If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All warnings (new ones prefixed by >>): >> drivers/media/platform/marvell/mmp-driver.c:364:34: warning: unused variable 'mmpcam_of_match' [-Wunused-const-variable] static const struct of_device_id mmpcam_of_match[] = { ^ 1 warning generated. vim +/mmpcam_of_match +364 drivers/media/platform/marvell/mmp-driver.c bb0a896e3d5083 drivers/media/video/marvell-ccic/mmp-driver.c Jonathan Corbet 2011-12-30 363 83c40e6611ec1e drivers/media/platform/marvell-ccic/mmp-driver.c Lubomir Rintel 2019-05-28 @364 static const struct of_device_id mmpcam_of_match[] = { 83c40e6611ec1e drivers/media/platform/marvell-ccic/mmp-driver.c Lubomir Rintel 2019-05-28 365 { .compatible = "marvell,mmp2-ccic", }, 83c40e6611ec1e drivers/media/platform/marvell-ccic/mmp-driver.c Lubomir Rintel 2019-05-28 366 {}, 83c40e6611ec1e drivers/media/platform/marvell-ccic/mmp-driver.c Lubomir Rintel 2019-05-28 367 }; 08aac0e32fe44b drivers/media/platform/marvell-ccic/mmp-driver.c Lubomir Rintel 2019-07-22 368 MODULE_DEVICE_TABLE(of, mmpcam_of_match); 67a8dbbc4e04cd drivers/media/video/marvell-ccic/mmp-driver.c Jonathan Corbet 2011-06-11 369 :::::: The code at line 364 was first introduced by commit :::::: 83c40e6611ec1e548ece34f6940f516333abc16a media: marvell-ccic/mmp: add devicetree support :::::: TO: Lubomir Rintel :::::: CC: Mauro Carvalho Chehab -- 0-DAY CI Kernel Test Service https://01.org/lkp