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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2BB5BC433F5 for ; Fri, 8 Oct 2021 15:01:55 +0000 (UTC) Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 4025560F70 for ; Fri, 8 Oct 2021 15:01:54 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 4025560F70 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 4EF8C83209; Fri, 8 Oct 2021 17:01:51 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="VWZKCp8C"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id E1DF2815B7; Fri, 8 Oct 2021 17:01:48 +0200 (CEST) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 7595883209 for ; Fri, 8 Oct 2021 17:01:44 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: by mail.kernel.org (Postfix) with ESMTPSA id 83DA260F9D; Fri, 8 Oct 2021 15:01:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1633705302; bh=hBTuUwJsRUzGrNUxcpu1P7TDl7fGrrcjA+0ZMOQlCvk=; h=From:To:Cc:Subject:Date:From; b=VWZKCp8CBNIYNkchBbR9OtLjui3lF5sZOa0imY70/2LKUAur1kMhhRxSc3Lj+aiYk grZu+yQBwc26VDdjEpZHd23iWNZUBQv7M5fBsGKDI28N9sRr1o9VEC1teCSW1siFJP wD3Ys6MzIezSiFLq4/dTvF2HBxXC5YDnVLVUUkPIjPDKhIrEgWrmoph8ttz7ZLgahN YeK5LX6U3yHqYyS6d4/RMxX+FVkhIlyfEN41ugyqh1jn25FzVzm4MGdMqOjsBY7jnw cfNQ7kBCEwSBeHy1q9W54VXz65KGUdnk7H3GgNsDGjyqq9lnIh5nun1jfSm5EccO0x TjPHaxtua0tKg== Received: by pali.im (Postfix) id 08691760; Fri, 8 Oct 2021 17:01:39 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Simon Glass , Stefan Roese Cc: u-boot@lists.denx.de Subject: [PATCH] pci: Fix printf format for regions Date: Fri, 8 Oct 2021 17:01:24 +0200 Message-Id: <20211008150124.17516-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean Correct printf format for unsigned long long is %llx and not %llxx. Signed-off-by: Pali Rohár --- drivers/pci/pci_auto_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci_auto_common.c b/drivers/pci/pci_auto_common.c index 5e7f3dbd10b5..b9a4aef1ecf8 100644 --- a/drivers/pci/pci_auto_common.c +++ b/drivers/pci/pci_auto_common.c @@ -76,7 +76,7 @@ static void pciauto_show_region(const char *name, struct pci_region *region) { pciauto_region_init(region); debug("PCI Autoconfig: Bus %s region: [%llx-%llx],\n" - "\t\tPhysical Memory [%llx-%llxx]\n", name, + "\t\tPhysical Memory [%llx-%llx]\n", name, (unsigned long long)region->bus_start, (unsigned long long)(region->bus_start + region->size - 1), (unsigned long long)region->phys_start, -- 2.20.1