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=-12.1 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,USER_AGENT_GIT 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 0DEEFC47097 for ; Thu, 3 Jun 2021 16:47:06 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id D4AD861001 for ; Thu, 3 Jun 2021 16:47:05 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org D4AD861001 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com 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=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=wEMRUbcFuXZjuPxdogu7cscrx2S3ymfgmhktWLbbWF4=; b=yMVpPeaAMAJ8g9 Av64mKBYS737nhSVGc9ichcoa1p8JdgWv403s+Niy3LwDx//8LGkIBgrZCIemnIbJt54D4ljJu1Ix hEz2G/izNRK4oPUtiW9q5fz43oLCC/0R4lEvJcVZSXsRff9I4JcdMZi83Mgt33HlYBxCp37f567QN e1Ie/WTyDIaMEaBTHLBNrk4aDn8DM+yxXicv+D47M1s8bAVOG5Gi5/2xJ7IwJzAZVmf9cxT0jdVgO Kkbgw3xboXUOxZLTkl6GrBnVdphpPOl8uHQm0YibTkkKekq5M+DeYjdj4pPzQcoJ1vKZ4RMXEWS0x 6Vy166JGqCuLp1RBwZAg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1loqT7-009auE-NC; Thu, 03 Jun 2021 16:45:17 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1loqSu-009aqL-8E for linux-arm-kernel@lists.infradead.org; Thu, 03 Jun 2021 16:45:05 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 7592911B3; Thu, 3 Jun 2021 09:45:03 -0700 (PDT) Received: from e123427-lin.arm.com (unknown [10.57.39.253]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 948103F73D; Thu, 3 Jun 2021 09:45:01 -0700 (PDT) From: Lorenzo Pieralisi To: Lucas Stach , Richard Zhu , linux-pci , Bjorn Helgaas , Pengutronix Kernel Team , Zhen Lei , NXP Linux Team , linux-arm-kernel , Fabio Estevam , Rob Herring , Shawn Guo , Sascha Hauer Cc: Lorenzo Pieralisi Subject: Re: [PATCH 1/1] PCI: dwc/imx6: Remove redundant error printing in imx6_pcie_probe() Date: Thu, 3 Jun 2021 17:44:56 +0100 Message-Id: <162273868466.1525.12151344390123344880.b4-ty@arm.com> X-Mailer: git-send-email 2.26.1 In-Reply-To: <20210511114547.5601-1-thunder.leizhen@huawei.com> References: <20210511114547.5601-1-thunder.leizhen@huawei.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210603_094504_385189_2A66E549 X-CRM114-Status: UNSURE ( 8.10 ) X-CRM114-Notice: Please train this message. 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 Tue, 11 May 2021 19:45:47 +0800, Zhen Lei wrote: > When devm_ioremap_resource() fails, a clear enough error message will be > printed by its subfunction __devm_ioremap_resource(). The error > information contains the device name, failure cause, and possibly resource > information. > > Therefore, remove the error printing here to simplify code and reduce the > binary size. Applied to pci/dwc, thanks! [1/1] PCI: dwc/imx6: Remove redundant error printing in imx6_pcie_probe() https://git.kernel.org/lpieralisi/pci/c/748a47f359 Thanks, Lorenzo _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel