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 68478CDB483 for ; Fri, 13 Oct 2023 05:13:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229437AbjJMFND (ORCPT ); Fri, 13 Oct 2023 01:13:03 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33366 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229436AbjJMFND (ORCPT ); Fri, 13 Oct 2023 01:13:03 -0400 Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.100]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BE17FB8 for ; Thu, 12 Oct 2023 22:13:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1697173981; x=1728709981; h=date:from:to:cc:subject:message-id:mime-version; bh=iNJH/rQ0Zioi0fhgaJyWaENiUfZxSbeQhucM3s6E9Jw=; b=HNkJCN2gOTDvoCDBOQHZoPf+Upv5jkMotoBCCqRY513O5jSa4h0j13wJ 2c35lcLR9ZU4O/xn/xE+XRPrsjJySMiWvDn2xlKfgqwHRVpkyQyK4OHW8 v1BImtFeObHVjmQPSB1O0jhyI/32Q8Ha0Gi2FFk7i9RmScZA7tQp1x/Hu nCtr4GaCq4v2DHP65HvR4KhBbDtNgx0jQjLSAVLIUrpaj/CcpMgHl8vWK osT54V67v1zWiYnFwrBZoRawvj8ib//7kgxr59jOkIhqSrkX31zzmwCjA 68zfAUl+6OlqStnuifsxg1ZxJpJCEodMxWlrft8rYScwD24UeQ8rYKjIv A==; X-IronPort-AV: E=McAfee;i="6600,9927,10861"; a="451585690" X-IronPort-AV: E=Sophos;i="6.03,221,1694761200"; d="scan'208";a="451585690" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Oct 2023 22:13:01 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10861"; a="1001798113" X-IronPort-AV: E=Sophos;i="6.03,221,1694761200"; d="scan'208";a="1001798113" Received: from lkp-server02.sh.intel.com (HELO f64821696465) ([10.239.97.151]) by fmsmga006.fm.intel.com with ESMTP; 12 Oct 2023 22:13:00 -0700 Received: from kbuild by f64821696465 with local (Exim 4.96) (envelope-from ) id 1qrATq-0004MO-0I; Fri, 13 Oct 2023 05:12:58 +0000 Date: Fri, 13 Oct 2023 13:12:15 +0800 From: kernel test robot To: Bartosz Golaszewski Cc: oe-kbuild-all@lists.linux.dev, linux-gpio@vger.kernel.org Subject: [brgl:gpio/devel 48/62] drivers/pinctrl/pinctrl-st.c:1326:9: error: implicit declaration of function 'st_gpio_direction_input'; did you mean 'st_gpio_direction_output'? Message-ID: <202310131321.jDp5kiph-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-gpio@vger.kernel.org tree: https://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git gpio/devel head: 78853aac42280ea9b48d7abc74b348463cf8588d commit: e1e2007b6bb0ba0e1bb89235ffde4c0330655c29 [48/62] pinctrl: st: drop the wrapper around pinctrl_gpio_direction_input() config: arm-randconfig-001-20231013 (https://download.01.org/0day-ci/archive/20231013/202310131321.jDp5kiph-lkp@intel.com/config) compiler: arm-linux-gnueabi-gcc (GCC) 13.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231013/202310131321.jDp5kiph-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/202310131321.jDp5kiph-lkp@intel.com/ All errors (new ones prefixed by >>): drivers/pinctrl/pinctrl-st.c: In function 'st_gpio_irq_request_resources': >> drivers/pinctrl/pinctrl-st.c:1326:9: error: implicit declaration of function 'st_gpio_direction_input'; did you mean 'st_gpio_direction_output'? [-Werror=implicit-function-declaration] 1326 | st_gpio_direction_input(gc, d->hwirq); | ^~~~~~~~~~~~~~~~~~~~~~~ | st_gpio_direction_output cc1: some warnings being treated as errors vim +1326 drivers/pinctrl/pinctrl-st.c 727b0f71a56de6 Srinivas Kandagatla 2014-01-16 1321 e855fa9a65c407 Patrice Chotard 2017-03-16 1322 static int st_gpio_irq_request_resources(struct irq_data *d) e855fa9a65c407 Patrice Chotard 2017-03-16 1323 { e855fa9a65c407 Patrice Chotard 2017-03-16 1324 struct gpio_chip *gc = irq_data_get_irq_chip_data(d); e855fa9a65c407 Patrice Chotard 2017-03-16 1325 e855fa9a65c407 Patrice Chotard 2017-03-16 @1326 st_gpio_direction_input(gc, d->hwirq); e855fa9a65c407 Patrice Chotard 2017-03-16 1327 c36f8c06ebd0c4 Linus Walleij 2023-04-04 1328 return gpiochip_reqres_irq(gc, d->hwirq); e855fa9a65c407 Patrice Chotard 2017-03-16 1329 } e855fa9a65c407 Patrice Chotard 2017-03-16 1330 :::::: The code at line 1326 was first introduced by commit :::::: e855fa9a65c40788b5069abb0d094537daa22e05 pinctrl: st: add irq_request/release_resources callbacks :::::: TO: Patrice Chotard :::::: CC: Linus Walleij -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki