From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (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 5BB702CA4 for ; Tue, 1 Feb 2022 08:54:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1643705672; x=1675241672; h=date:from:to:cc:subject:message-id:mime-version; bh=FlPTRlUY6HfQlQJg8e/Zs1h1lIDW4JQiYU0jWx1Hv/8=; b=fKxRBA1reuGGuERyy8PnDOGSrypu4FtLZCP4eWOum1ZAlP3+ujxBGd3h kbRkRV7tzgzY6m84D7Y+VpzwriNzMSPnNFu4chfOKLalRMaIjcV4+HYIw olfddITautMLy7vIYnbd4Z/eViXkWkm74m3ilnNF0RPPxH/dU42ig9oCQ oH7Zc91BzDr27XodukfGIpYwI61qENso/x2mAN+9HSE/GbeDL0igjZc3b JqkhYoxmxL8oLrixa5ViS1GgD7VwltfDnPcnpwVy9uIapYrIPqrCD4k4E 0liIi9nQ1zzHVPq+j8+NqzsR+eo5+f6ksj9E67YAtM/RZopv5NvMttKik w==; X-IronPort-AV: E=McAfee;i="6200,9189,10244"; a="272123940" X-IronPort-AV: E=Sophos;i="5.88,333,1635231600"; d="scan'208";a="272123940" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Feb 2022 00:54:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,333,1635231600"; d="scan'208";a="582965208" Received: from lkp-server01.sh.intel.com (HELO 276f1b88eecb) ([10.239.97.150]) by fmsmga008.fm.intel.com with ESMTP; 01 Feb 2022 00:54:28 -0800 Received: from kbuild by 276f1b88eecb with local (Exim 4.92) (envelope-from ) id 1nEovk-000T2V-1a; Tue, 01 Feb 2022 08:54:28 +0000 Date: Tue, 1 Feb 2022 16:53:59 +0800 From: kernel test robot To: Marc Zyngier Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, linux-arm-kernel@lists.infradead.org Subject: [arm-platforms:irq/irq_chip_ro 12/20] drivers/gpio/gpio-omap.c:716:41: error: member reference type 'struct gpio_chip' is not a pointer; did you mean to use '.'? Message-ID: <202202011652.44VOL7NK-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 User-Agent: Mutt/1.10.1 (2018-07-13) tree: https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git irq/irq_chip_ro head: 218869493fda68e8c327a6484f5a6973a3008729 commit: bb36fd119ef0dcee7e0e7e5f9fd11d5221bf5f73 [12/20] gpio: omap: Switch to dynamic chip name output config: arm-randconfig-r002-20220131 (https://download.01.org/0day-ci/archive/20220201/202202011652.44VOL7NK-lkp@intel.com/config) compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 6b1e844b69f15bb7dffaf9365cd2b355d2eb7579) 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 # install arm cross compiling tool for clang build # apt-get install binutils-arm-linux-gnueabi # https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git/commit/?id=bb36fd119ef0dcee7e0e7e5f9fd11d5221bf5f73 git remote add arm-platforms https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git git fetch --no-tags arm-platforms irq/irq_chip_ro git checkout bb36fd119ef0dcee7e0e7e5f9fd11d5221bf5f73 # 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=arm SHELL=/bin/bash drivers/ If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): >> drivers/gpio/gpio-omap.c:716:41: error: member reference type 'struct gpio_chip' is not a pointer; did you mean to use '.'? seq_printf(p, "%s", dev_name(bank->chip->dev)); ~~~~~~~~~~^~ . >> drivers/gpio/gpio-omap.c:716:43: error: no member named 'dev' in 'struct gpio_chip' seq_printf(p, "%s", dev_name(bank->chip->dev)); ~~~~~~~~~~ ^ 2 errors generated. vim +716 drivers/gpio/gpio-omap.c 711 712 static void omap_gpio_irq_print_chip(struct irq_data *d, struct seq_file *p) 713 { 714 struct gpio_bank *bank = omap_irq_data_get_bank(d); 715 > 716 seq_printf(p, "%s", dev_name(bank->chip->dev)); 717 } 718 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 322E0C433EF for ; Tue, 1 Feb 2022 08:56:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Subject:Cc:To: From:Date:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=+ut+EnNhbH7cYgAk8i7iyXvHQOnaqhG58UyhRXc0/us=; b=1/Q9nzM5qB87rU jf+e5mBFHdQkT+gdOIh6rncP90A1d81JYXM1OxbAZ35Bjx+D0thsVW6Lumnx+4UGEMR2Jd4NzcJT+ WBlPSzUoq086OLNZoS7fTks8l63soHx71yiDx0C/b6OPWblaQ7pXAAd6+UKnUeAYWjfW0YMn+nSRI BtdApdBc8zgnM9q+TS2F2C/aLhpC7GvDWb2Q4YJdK5EsCY5Ri3WVXtYtHYCQzC4YihyEQlprYUHJf NIDghIKkpYCPvloew7I6xblYXsf34ZUE6tJap3fPpNRoRAvR3bh25Fd7YaJUxouYtAGp3/X4s6kxX /jQOQz71fDF0uq6gRfWQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nEovs-00Ba4I-SZ; Tue, 01 Feb 2022 08:54:37 +0000 Received: from mga09.intel.com ([134.134.136.24]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nEovp-00Ba3q-F3 for linux-arm-kernel@lists.infradead.org; Tue, 01 Feb 2022 08:54:35 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1643705673; x=1675241673; h=date:from:to:cc:subject:message-id:mime-version; bh=FlPTRlUY6HfQlQJg8e/Zs1h1lIDW4JQiYU0jWx1Hv/8=; b=aWzsADNguFY4DqXvhHti0CuVU+layr2PM+DQX98b+Oq1xLfQfXpJqVHv WzvqOiNgZzkWEC5wOco11qHHV0+BxtDjk88sl4ABKdnKLK92DqBMrN/fm GrBOCW1GPvI4IH2qwhw4j4draJAIhr2izlSVpHgNRmpCWBve3mQzFPElT AbqKMY+1pS2cmRyu9dkIoGZ460t9+j+aDR4B4bYjy8PIMUGst9tTqukaN HIiWV9zAzyssDgmpDINLdQ+d3mcv1XrV9p0sa6uSpTcvdCT2y9HswThAb deCXy2f7VnaY6yGsU2mAkgJwvlGUm4SYZs+aEzCAM84UiR8+VAPnA3+Rx A==; X-IronPort-AV: E=McAfee;i="6200,9189,10244"; a="247417623" X-IronPort-AV: E=Sophos;i="5.88,333,1635231600"; d="scan'208";a="247417623" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Feb 2022 00:54:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,333,1635231600"; d="scan'208";a="582965208" Received: from lkp-server01.sh.intel.com (HELO 276f1b88eecb) ([10.239.97.150]) by fmsmga008.fm.intel.com with ESMTP; 01 Feb 2022 00:54:28 -0800 Received: from kbuild by 276f1b88eecb with local (Exim 4.92) (envelope-from ) id 1nEovk-000T2V-1a; Tue, 01 Feb 2022 08:54:28 +0000 Date: Tue, 1 Feb 2022 16:53:59 +0800 From: kernel test robot To: Marc Zyngier Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, linux-arm-kernel@lists.infradead.org Subject: [arm-platforms:irq/irq_chip_ro 12/20] drivers/gpio/gpio-omap.c:716:41: error: member reference type 'struct gpio_chip' is not a pointer; did you mean to use '.'? Message-ID: <202202011652.44VOL7NK-lkp@intel.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220201_005433_582666_653705A7 X-CRM114-Status: GOOD ( 12.81 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org tree: https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git irq/irq_chip_ro head: 218869493fda68e8c327a6484f5a6973a3008729 commit: bb36fd119ef0dcee7e0e7e5f9fd11d5221bf5f73 [12/20] gpio: omap: Switch to dynamic chip name output config: arm-randconfig-r002-20220131 (https://download.01.org/0day-ci/archive/20220201/202202011652.44VOL7NK-lkp@intel.com/config) compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 6b1e844b69f15bb7dffaf9365cd2b355d2eb7579) 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 # install arm cross compiling tool for clang build # apt-get install binutils-arm-linux-gnueabi # https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git/commit/?id=bb36fd119ef0dcee7e0e7e5f9fd11d5221bf5f73 git remote add arm-platforms https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git git fetch --no-tags arm-platforms irq/irq_chip_ro git checkout bb36fd119ef0dcee7e0e7e5f9fd11d5221bf5f73 # 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=arm SHELL=/bin/bash drivers/ If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): >> drivers/gpio/gpio-omap.c:716:41: error: member reference type 'struct gpio_chip' is not a pointer; did you mean to use '.'? seq_printf(p, "%s", dev_name(bank->chip->dev)); ~~~~~~~~~~^~ . >> drivers/gpio/gpio-omap.c:716:43: error: no member named 'dev' in 'struct gpio_chip' seq_printf(p, "%s", dev_name(bank->chip->dev)); ~~~~~~~~~~ ^ 2 errors generated. vim +716 drivers/gpio/gpio-omap.c 711 712 static void omap_gpio_irq_print_chip(struct irq_data *d, struct seq_file *p) 713 { 714 struct gpio_bank *bank = omap_irq_data_get_bank(d); 715 > 716 seq_printf(p, "%s", dev_name(bank->chip->dev)); 717 } 718 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============2637114221697541208==" MIME-Version: 1.0 From: kernel test robot To: kbuild-all@lists.01.org Subject: [arm-platforms:irq/irq_chip_ro 12/20] drivers/gpio/gpio-omap.c:716:41: error: member reference type 'struct gpio_chip' is not a pointer; did you mean to use '.'? Date: Tue, 01 Feb 2022 16:53:59 +0800 Message-ID: <202202011652.44VOL7NK-lkp@intel.com> List-Id: --===============2637114221697541208== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable tree: https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.g= it irq/irq_chip_ro head: 218869493fda68e8c327a6484f5a6973a3008729 commit: bb36fd119ef0dcee7e0e7e5f9fd11d5221bf5f73 [12/20] gpio: omap: Switch= to dynamic chip name output config: arm-randconfig-r002-20220131 (https://download.01.org/0day-ci/archi= ve/20220201/202202011652.44VOL7NK-lkp(a)intel.com/config) compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 6b1e84= 4b69f15bb7dffaf9365cd2b355d2eb7579) reproduce (this is a W=3D1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/= make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # install arm cross compiling tool for clang build # apt-get install binutils-arm-linux-gnueabi # https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms= .git/commit/?id=3Dbb36fd119ef0dcee7e0e7e5f9fd11d5221bf5f73 git remote add arm-platforms https://git.kernel.org/pub/scm/linux/k= ernel/git/maz/arm-platforms.git git fetch --no-tags arm-platforms irq/irq_chip_ro git checkout bb36fd119ef0dcee7e0e7e5f9fd11d5221bf5f73 # save the config file to linux build tree mkdir build_dir COMPILER_INSTALL_PATH=3D$HOME/0day COMPILER=3Dclang make.cross W=3D= 1 O=3Dbuild_dir ARCH=3Darm SHELL=3D/bin/bash drivers/ If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): >> drivers/gpio/gpio-omap.c:716:41: error: member reference type 'struct gp= io_chip' is not a pointer; did you mean to use '.'? seq_printf(p, "%s", dev_name(bank->chip->dev)); ~~~~~~~~~~^~ . >> drivers/gpio/gpio-omap.c:716:43: error: no member named 'dev' in 'struct= gpio_chip' seq_printf(p, "%s", dev_name(bank->chip->dev)); ~~~~~~~~~~ ^ 2 errors generated. vim +716 drivers/gpio/gpio-omap.c 711 = 712 static void omap_gpio_irq_print_chip(struct irq_data *d, struct seq_= file *p) 713 { 714 struct gpio_bank *bank =3D omap_irq_data_get_bank(d); 715 = > 716 seq_printf(p, "%s", dev_name(bank->chip->dev)); 717 } 718 = --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org --===============2637114221697541208==--