From patchwork Mon Feb 24 14:47:16 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Russell King (Oracle)" X-Patchwork-Id: 13988330 Received: from pandora.armlinux.org.uk (pandora.armlinux.org.uk [78.32.30.218]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id EF5C62571CE for ; Mon, 24 Feb 2025 14:47:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=78.32.30.218 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740408448; cv=none; b=dBdCMCVvvjZWG9MvVjYgeYn8OxaxDae5pzsweXaJwd92SASbC/+0eCRCLnojxw2bOWrskJjYJHRKSrq9OjXjSmptTE3I4vHCZ10AC/uT4uen56HFm3XBBOZxHLG2oUb2rSYXgXXmLAE0sTDx9jmxyWyhm7U86vNhqpDSfCpiWe4= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740408448; c=relaxed/simple; bh=uvva7VVgcYQdPwehDEq5K7SEH/IFmwJPm2IdZ7+Q0Yo=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=hOCjYxp55Yx8dXRB1NjyF22g/mYqIYQty1V6Zb1gV2+XD9JxM9h0FpqP7zuVxhGfpXnCzhdw9hDKiA6wh6olnVRC9ZS0xyIAZHYI8PRQ6xJsBEpHecUwLbJvIdnndoyWtYXajINE9obO7T8PkunXC+NxVfSWps1Hx0rdIwfWHfw= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=armlinux.org.uk; spf=none smtp.mailfrom=armlinux.org.uk; dkim=pass (2048-bit key) header.d=armlinux.org.uk header.i=@armlinux.org.uk header.b=WSlwxJPC; arc=none smtp.client-ip=78.32.30.218 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=armlinux.org.uk Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=armlinux.org.uk Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=armlinux.org.uk header.i=@armlinux.org.uk header.b="WSlwxJPC" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=armlinux.org.uk; s=pandora-2019; h=Sender:Content-Type:MIME-Version: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=w2VjUmcUhwo45yKsnIYQyEKNRQ2c98rmF9aT5Omixdg=; b=WSlwxJPCmcu4xnkbsWzbiG3zY8 tpIG3DO/dieoFK3cV1Ezwd1BJzFNXU/QeefmhPr49N0cBr39Lz4tS7d7318pOjagRGZcPXKUqzsRh zkhvuYecu6EVNhPDBbDyd+ThG2zoFW9dluANMurm7yi2tq5stBJegn1KqMPWdl/UFA+tBL6u773Rl quUupuZLXIoK3GKSK4XqiEcARcQ50fp379TJSf0zrUD7IVaUB6LjTpLzTmkxLagsx2EaQta59Dd9e QketBhXljhkl3AP0rubZ6EmuYKBZvHAxMhdEXJ5+I2vOPN1/6LJSXvuy8obXirPQIe1clAsh8zthE ecoLa1tg==; Received: from shell.armlinux.org.uk ([fd8f:7570:feb6:1:5054:ff:fe00:4ec]:47930) by pandora.armlinux.org.uk with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1tmZjr-0006fT-39; Mon, 24 Feb 2025 14:47:20 +0000 Received: from linux by shell.armlinux.org.uk with local (Exim 4.96) (envelope-from ) id 1tmZjo-00055d-35; Mon, 24 Feb 2025 14:47:16 +0000 Date: Mon, 24 Feb 2025 14:47:16 +0000 From: "Russell King (Oracle)" To: Andrew Lunn , Heiner Kallweit Cc: Alexandre Torgue , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , linux-arm-kernel@lists.infradead.org, linux-stm32@st-md-mailman.stormreply.com, Maxime Coquelin , netdev@vger.kernel.org, Paolo Abeni Subject: [PATCH net-next v2 0/2] net: stmmac: dwc-qos: clean up clock initialisation Message-ID: Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline Sender: Russell King (Oracle) X-Patchwork-Delegate: kuba@kernel.org Hi, My single v1 patch has become two patches as a result of the build error, as it appears this code uses "data" differently from others. The first patch brings some consistency with other drivers, naming local variables that refer to struct plat_stmmacenet_data as "plat_dat", as is used elsewhere in this driver. The second patch is the v1 patch updated for this with the build error fixed. .../ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c | 52 ++++++++++++---------- 1 file changed, 28 insertions(+), 24 deletions(-)