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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 0E367C433F5 for ; Wed, 27 Apr 2022 10:44:30 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A104E83ED8; Wed, 27 Apr 2022 12:43:32 +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="CSmrduWe"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id EEAED83B38; Wed, 27 Apr 2022 12:42:51 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 85B4183ED8 for ; Wed, 27 Apr 2022 12:42:37 +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=kabel@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 2F9FB61C19; Wed, 27 Apr 2022 10:42:36 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 009A4C385AA; Wed, 27 Apr 2022 10:42:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1651056155; bh=2l1ff4rg3Rsttq7PgqCEsr7tAGjfwpErvqq8fvLFng0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=CSmrduWewrEliqkaZh7O5atEJLO8Os97cK1LDXSMX8eGlCmmmFLfdha9Ji2I7dTax QIRa0JcKX4CYB0ykuoNQFfqqqQT/qmYUeQp01I4jktEuxHqIC0XR4zikziQbMEqfii qJ+QL2wx2w0y3u2dfqwe0xtZ/0ftLeUf/iab9PuATC/Y6/pILr50fWd8pREzFyqFPe V1QzoHeQkcI8yNHw0R+ekwq721UaQG/JSr60cGxLpueKZsh60Z/k/BKSlkZy54eLp/ okqJqmm82xyQbHx8afoerbGzPxHTb0VjROZ1HOmMSFJEnw49QzNwjH71LnQ7m5YiBg Uar1NXYFgLjCQ== From: =?UTF-8?q?Marek=20Beh=C3=BAn?= To: Stefan Roese Cc: Robert Marko , =?UTF-8?q?Pali=20Roh=C3=A1r?= , U-Boot-Denx , Ramon Fried , Joe Hershberger , =?UTF-8?q?Marek=20Beh=C3=BAn?= Subject: [PATCH u-boot-marvell 12/19] net: mvneta: Drop unnecessary space Date: Wed, 27 Apr 2022 12:41:55 +0200 Message-Id: <20220427104202.1205-13-kabel@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220427104202.1205-1-kabel@kernel.org> References: <20220427104202.1205-1-kabel@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.39 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.5 at phobos.denx.de X-Virus-Status: Clean From: Marek BehĂșn Drop unnecessary space in mvneta_adjust_link(). Signed-off-by: Marek BehĂșn --- drivers/net/mvneta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/mvneta.c b/drivers/net/mvneta.c index 7d582c1206..5c3f7125b5 100644 --- a/drivers/net/mvneta.c +++ b/drivers/net/mvneta.c @@ -1183,7 +1183,7 @@ static void mvneta_adjust_link(struct udevice *dev) mvreg_write(pp, MVNETA_GMAC_AUTONEG_CONFIG, val); pp->duplex = phydev->duplex; - pp->speed = phydev->speed; + pp->speed = phydev->speed; } if (phydev->link != pp->link) { -- 2.35.1