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 X-Spam-Level: X-Spam-Status: No, score=-11.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 49D96C433E2 for ; Tue, 23 Mar 2021 11:48:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EC528619C2 for ; Tue, 23 Mar 2021 11:48:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230105AbhCWLsF (ORCPT ); Tue, 23 Mar 2021 07:48:05 -0400 Received: from mail.kernel.org ([198.145.29.99]:55204 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229508AbhCWLrv (ORCPT ); Tue, 23 Mar 2021 07:47:51 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 589A8619BF; Tue, 23 Mar 2021 11:47:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1616500070; bh=6tOFh9a0qtxxlZRCAFGaHM+gh3jhX0LL8TQ/odb571s=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=PO1CrBKr3s42i4iMwW7WFMXcszIple91cJcTyTXrXjXQbB3yZGPkQI9FvQ1szS9l3 UenM7ch7OlAEvWaJunUbZPogBwn2A3IwFxFn8sPrUReMM854ucictVxolhkiXy3m3W HdO2cChspr+knJLE66uNC315TbVD13lK6sm0P6iE= Date: Tue, 23 Mar 2021 12:47:48 +0100 From: Greg KH To: kernel test robot Cc: Manish Narani , robh+dt@kernel.org, michal.simek@xilinx.com, balbi@kernel.org, p.zabel@pengutronix.de, kbuild-all@lists.01.org, git@xilinx.com, linux-usb@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 2/2] usb: dwc3: Add driver for Xilinx platforms Message-ID: References: <1615963949-75320-3-git-send-email-manish.narani@xilinx.com> <202103171704.VHPs8XOA-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202103171704.VHPs8XOA-lkp@intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Mar 17, 2021 at 05:50:22PM +0800, kernel test robot wrote: > Hi Manish, > > Thank you for the patch! Perhaps something to improve: > > [auto build test WARNING on usb/usb-testing] > [also build test WARNING on robh/for-next v5.12-rc3 next-20210316] > [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/Manish-Narani/Add-a-separate-DWC3-OF-driver-for-Xilinx-platforms/20210317-145425 > base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing > config: arm64-allyesconfig (attached as .config) > compiler: aarch64-linux-gcc (GCC) 9.3.0 > 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/def409fdf931cd77f4a88812570ea6f38f4053d8 > git remote add linux-review https://github.com/0day-ci/linux > git fetch --no-tags linux-review Manish-Narani/Add-a-separate-DWC3-OF-driver-for-Xilinx-platforms/20210317-145425 > git checkout def409fdf931cd77f4a88812570ea6f38f4053d8 > # save the attached .config to linux build tree > COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm64 > > If you fix the issue, kindly add following tag as appropriate > Reported-by: kernel test robot > > All warnings (new ones prefixed by >>): > > >> drivers/usb/dwc3/dwc3-xilinx.c:27: warning: expecting prototype for dwc3(). Prototype was for XLNX_USB_PHY_RST_EN() instead > > > vim +27 drivers/usb/dwc3/dwc3-xilinx.c > > 25 > 26 /* USB phy reset mask register */ > > 27 #define XLNX_USB_PHY_RST_EN 0x001C > 28 #define XLNX_PHY_RST_MASK 0x1 > 29 I do not understand this warning message. What is it trying to say? confused, greg k-h 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 X-Spam-Level: X-Spam-Status: No, score=-9.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 06B8BC433C1 for ; Tue, 23 Mar 2021 11:53:16 +0000 (UTC) Received: from desiato.infradead.org (desiato.infradead.org [90.155.92.199]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 233EB601FF for ; Tue, 23 Mar 2021 11:53:15 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 233EB601FF Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=desiato.20200630; h=Sender:Content-Transfer-Encoding :Content-Type:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: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:List-Owner; bh=MvQBoVOJfKNDW8zLPyjEvsE9/k2eHxzy+LwFzSVUe+0=; b=D25o3bWN4ejAxkCVWuD8D845G lDSldgPgYD+tYpZ/bxTQwIG5jMOFKC8rWpULBeTzGUQ1ZOYWZMSeGdqU/7Frgx5zCgKtMNGHi+1cH DdOXkZVau03XxSJteIsRWckjrjzUX5okh0Lp+suGOeOkTEB0JmR851fEMZyccnDaiHMKYhqT5fwvb 7KfUduYwWmbljYp3tiOidJmKcsZwGlYhe3oYAUYjJu3aObf6MkqMFwfPNge9yrmXWVH3By3Pdgq14 VVdSwnmpgsiaY5IpQOS0H+Mvr5r9ciBO4sqH5hN1GjW6NhWThMlfyWxtnx2ajbqRkT8i9AE0ZCJwq VzVpkiBbQ==; Received: from localhost ([::1] helo=desiato.infradead.org) by desiato.infradead.org with esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1lOfZF-00Ep5y-KZ; Tue, 23 Mar 2021 11:51:25 +0000 Received: from mail.kernel.org ([198.145.29.99]) by desiato.infradead.org with esmtps (Exim 4.94 #2 (Red Hat Linux)) id 1lOfVp-00En6g-PM for linux-arm-kernel@lists.infradead.org; Tue, 23 Mar 2021 11:47:56 +0000 Received: by mail.kernel.org (Postfix) with ESMTPSA id 589A8619BF; Tue, 23 Mar 2021 11:47:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1616500070; bh=6tOFh9a0qtxxlZRCAFGaHM+gh3jhX0LL8TQ/odb571s=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=PO1CrBKr3s42i4iMwW7WFMXcszIple91cJcTyTXrXjXQbB3yZGPkQI9FvQ1szS9l3 UenM7ch7OlAEvWaJunUbZPogBwn2A3IwFxFn8sPrUReMM854ucictVxolhkiXy3m3W HdO2cChspr+knJLE66uNC315TbVD13lK6sm0P6iE= Date: Tue, 23 Mar 2021 12:47:48 +0100 From: Greg KH To: kernel test robot Cc: Manish Narani , robh+dt@kernel.org, michal.simek@xilinx.com, balbi@kernel.org, p.zabel@pengutronix.de, kbuild-all@lists.01.org, git@xilinx.com, linux-usb@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 2/2] usb: dwc3: Add driver for Xilinx platforms Message-ID: References: <1615963949-75320-3-git-send-email-manish.narani@xilinx.com> <202103171704.VHPs8XOA-lkp@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <202103171704.VHPs8XOA-lkp@intel.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210323_114754_360681_0E4BFA83 X-CRM114-Status: GOOD ( 18.73 ) 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 On Wed, Mar 17, 2021 at 05:50:22PM +0800, kernel test robot wrote: > Hi Manish, > > Thank you for the patch! Perhaps something to improve: > > [auto build test WARNING on usb/usb-testing] > [also build test WARNING on robh/for-next v5.12-rc3 next-20210316] > [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/Manish-Narani/Add-a-separate-DWC3-OF-driver-for-Xilinx-platforms/20210317-145425 > base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing > config: arm64-allyesconfig (attached as .config) > compiler: aarch64-linux-gcc (GCC) 9.3.0 > 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/def409fdf931cd77f4a88812570ea6f38f4053d8 > git remote add linux-review https://github.com/0day-ci/linux > git fetch --no-tags linux-review Manish-Narani/Add-a-separate-DWC3-OF-driver-for-Xilinx-platforms/20210317-145425 > git checkout def409fdf931cd77f4a88812570ea6f38f4053d8 > # save the attached .config to linux build tree > COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm64 > > If you fix the issue, kindly add following tag as appropriate > Reported-by: kernel test robot > > All warnings (new ones prefixed by >>): > > >> drivers/usb/dwc3/dwc3-xilinx.c:27: warning: expecting prototype for dwc3(). Prototype was for XLNX_USB_PHY_RST_EN() instead > > > vim +27 drivers/usb/dwc3/dwc3-xilinx.c > > 25 > 26 /* USB phy reset mask register */ > > 27 #define XLNX_USB_PHY_RST_EN 0x001C > 28 #define XLNX_PHY_RST_MASK 0x1 > 29 I do not understand this warning message. What is it trying to say? confused, greg k-h _______________________________________________ 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="===============5057719039487686913==" MIME-Version: 1.0 From: Greg KH To: kbuild-all@lists.01.org Subject: Re: [PATCH v4 2/2] usb: dwc3: Add driver for Xilinx platforms Date: Tue, 23 Mar 2021 12:47:48 +0100 Message-ID: In-Reply-To: <202103171704.VHPs8XOA-lkp@intel.com> List-Id: --===============5057719039487686913== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable On Wed, Mar 17, 2021 at 05:50:22PM +0800, kernel test robot wrote: > Hi Manish, > = > Thank you for the patch! Perhaps something to improve: > = > [auto build test WARNING on usb/usb-testing] > [also build test WARNING on robh/for-next v5.12-rc3 next-20210316] > [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/Manish-Narani/Add-a-sepa= rate-DWC3-OF-driver-for-Xilinx-platforms/20210317-145425 > base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git us= b-testing > config: arm64-allyesconfig (attached as .config) > compiler: aarch64-linux-gcc (GCC) 9.3.0 > reproduce (this is a W=3D1 build): > wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbi= n/make.cross -O ~/bin/make.cross > chmod +x ~/bin/make.cross > # https://github.com/0day-ci/linux/commit/def409fdf931cd77f4a8881= 2570ea6f38f4053d8 > git remote add linux-review https://github.com/0day-ci/linux > git fetch --no-tags linux-review Manish-Narani/Add-a-separate-DWC= 3-OF-driver-for-Xilinx-platforms/20210317-145425 > git checkout def409fdf931cd77f4a88812570ea6f38f4053d8 > # save the attached .config to linux build tree > COMPILER_INSTALL_PATH=3D$HOME/0day COMPILER=3Dgcc-9.3.0 make.cros= s ARCH=3Darm64 = > = > If you fix the issue, kindly add following tag as appropriate > Reported-by: kernel test robot > = > All warnings (new ones prefixed by >>): > = > >> drivers/usb/dwc3/dwc3-xilinx.c:27: warning: expecting prototype for dw= c3(). Prototype was for XLNX_USB_PHY_RST_EN() instead > = > = > vim +27 drivers/usb/dwc3/dwc3-xilinx.c > = > 25 = > 26 /* USB phy reset mask register */ > > 27 #define XLNX_USB_PHY_RST_EN 0x001C > 28 #define XLNX_PHY_RST_MASK 0x1 > 29 = I do not understand this warning message. What is it trying to say? confused, greg k-h --===============5057719039487686913==--