From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) (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 B9D496469 for ; Thu, 10 Mar 2022 20:40:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1646944805; x=1678480805; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=9jAQl+d3TqTy+GhqGoxe3e/ZBiWEWppWLjUInnU/Mrc=; b=OPZs4AMnqAbdXlomFyhI+QcR6FJC/C3GEFhkO3onJ6zdM754sfqvN2l1 v7Ikve53rxfg/eQi2uX0wCTJwHRQhOfI7K+XAJSE/f1Db+R6UML3TF20i vIU0j6ek+6+IbZezsCtjYs4lnKeBHvuW0wUB6U/33TnZ45lRtUEc+8X2U aNoZovoa2rRpwkSAvPwTADGQka1SkCFqXrStD+Is6uP8Pr8kDiIpPPSUi wJ+rFxNbcEq/zvRrxkfQBZ9ST6IdOKUku5Y31rW+h+MAlm+GyOXHX4BLj 9kY6lXXPDM9Vjn8Hjgt8TpsqSurEdEjy+YP1Ubng/G76hEgtmOcU8CJOB Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10282"; a="318599737" X-IronPort-AV: E=Sophos;i="5.90,171,1643702400"; d="scan'208";a="318599737" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Mar 2022 12:40:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,171,1643702400"; d="scan'208";a="578952716" Received: from lkp-server02.sh.intel.com (HELO 89b41b6ae01c) ([10.239.97.151]) by orsmga001.jf.intel.com with ESMTP; 10 Mar 2022 12:40:02 -0800 Received: from kbuild by 89b41b6ae01c with local (Exim 4.92) (envelope-from ) id 1nSPZp-0005NU-J7; Thu, 10 Mar 2022 20:40:01 +0000 Date: Fri, 11 Mar 2022 04:39:42 +0800 From: kernel test robot To: Jacopo Mondi , Chiranjeevi Rapolu Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, Jacopo Mondi , jeanmichel.hautbois@ideasonboard.com, laurent.pinchart@ideasonboard.com, paul.kocialkowski@bootlin.com, sakari.ailus@iki.fi, paul.elder@ideasonboard.com, Mauro Carvalho Chehab , linux-media@vger.kernel.org Subject: Re: [PATCH 2/6] media: i2c: ov5670: Allow probing with OF Message-ID: <202203110425.5nMUZpmG-lkp@intel.com> References: <20220310130829.96001-3-jacopo@jmondi.org> 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 In-Reply-To: <20220310130829.96001-3-jacopo@jmondi.org> User-Agent: Mutt/1.10.1 (2018-07-13) Hi Jacopo, I love your patch! Yet something to improve: [auto build test ERROR on media-tree/master] [also build test ERROR on v5.17-rc7 next-20220310] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/Jacopo-Mondi/media-i2c-ov5670-OF-support-runtime_pm-regulators/20220310-211143 base: git://linuxtv.org/media_tree.git master config: i386-randconfig-a013 (https://download.01.org/0day-ci/archive/20220311/202203110425.5nMUZpmG-lkp@intel.com/config) compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 276ca87382b8f16a65bddac700202924228982f6) 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://github.com/0day-ci/linux/commit/f5425877ffa93005c9f71ce9ce4185a787db66eb git remote add linux-review https://github.com/0day-ci/linux git fetch --no-tags linux-review Jacopo-Mondi/media-i2c-ov5670-OF-support-runtime_pm-regulators/20220310-211143 git checkout f5425877ffa93005c9f71ce9ce4185a787db66eb # save the config file to linux build tree mkdir build_dir COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): >> drivers/media/i2c/ov5670.c:2601:34: error: use of undeclared identifier 'ov5670_of_ids' .of_match_table = of_match_ptr(ov5670_of_ids), ^ 1 error generated. vim +/ov5670_of_ids +2601 drivers/media/i2c/ov5670.c 2595 2596 static struct i2c_driver ov5670_i2c_driver = { 2597 .driver = { 2598 .name = "ov5670", 2599 .pm = &ov5670_pm_ops, 2600 .acpi_match_table = ACPI_PTR(ov5670_acpi_ids), > 2601 .of_match_table = of_match_ptr(ov5670_of_ids), 2602 }, 2603 .probe_new = ov5670_probe, 2604 .remove = ov5670_remove, 2605 .flags = I2C_DRV_ACPI_WAIVE_D0_PROBE, 2606 }; 2607 --- 0-DAY CI Kernel Test Service https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org