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 15881C433F5 for ; Fri, 22 Oct 2021 14:24:45 +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 5B8B06108B for ; Fri, 22 Oct 2021 14:24:44 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 5B8B06108B 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 8B16B8355D; Fri, 22 Oct 2021 16:23:54 +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="W0YXZ7QC"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id A190D83535; Fri, 22 Oct 2021 16:23:21 +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 55C1983542 for ; Fri, 22 Oct 2021 16:22:52 +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 A973A61205; Fri, 22 Oct 2021 14:22:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1634912569; bh=WHPPYMFAUX1PIN4H/Z8rC4xEBWub7uLXoccj4p4iA8E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=W0YXZ7QCnuOeGZ3FPhjrcEeUh1yIpqLMGrB9Cxv0kZl+tDkSIJZxdE/wD7NAm8GBX j39gWwnUJssl15oK+d1waZRT/GXL7f7Vhn8j83KnyM5Tv+/mbq28LVCGBywUuZYZTM icgiJybUpLI/ORy+1NI4NxjMMx/V7AW6zZV0vq9DwX5h8HrauTWOJARD7fx6c1IcQY h7bZRnGGZDqBDTrc/1O7hw2lub2eiQ730zdQdxVT/jPxXbIIyq/4+yRJdwtZ47l2xC 6FtkJH9SqUr1sEc4u6OQi1f0a+HxAu1ArzTsbcjfUkQQSx9/PiY2IfXKnv+bw8c8We iDq6xw+rJn7IA== Received: by pali.im (Postfix) id B9E3BEA9; Fri, 22 Oct 2021 16:22:46 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Stefan Roese Cc: =?UTF-8?q?Marek=20Beh=C3=BAn?= , u-boot@lists.denx.de Subject: [PATCH 8/8] pci: pci_mvebu: Fix comment about driver class name Date: Fri, 22 Oct 2021 16:22:15 +0200 Message-Id: <20211022142215.26484-9-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20211022142215.26484-1-pali@kernel.org> References: <20211022142215.26484-1-pali@kernel.org> 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 This is a pci driver, not an eth driver. Signed-off-by: Pali Rohár Reviewed-by: Marek Behún --- drivers/pci/pci_mvebu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci_mvebu.c b/drivers/pci/pci_mvebu.c index b0c673d8c472..ed151a05a4bf 100644 --- a/drivers/pci/pci_mvebu.c +++ b/drivers/pci/pci_mvebu.c @@ -633,7 +633,7 @@ static int mvebu_pcie_bind(struct udevice *parent) struct udevice *dev; ofnode subnode; - /* Lookup eth driver */ + /* Lookup pci driver */ drv = lists_uclass_lookup(UCLASS_PCI); if (!drv) { puts("Cannot find PCI driver\n"); -- 2.20.1