From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) (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 4E15E16D339; Tue, 28 May 2024 12:08:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=156.67.10.101 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716898116; cv=none; b=YLo6mkuAYtfRMnTsG6cJJl+fIwC8vSIwS+FaTb+Dq7SW3UVwZhyMfpcH+2F9+5IPWnOANtXpbyIqJj06BhPtUPXa/T1rCny559we2ZGxotDz+mNhNYEq5YXd7arbfg3JyuJrOwQWeVxxF+JVO+cGQumUE8oF3vY1q5tvCDtcy4U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716898116; c=relaxed/simple; bh=dQeGBHjPQIWO+7pLwlnXWV1KMuBRTnyQEz/KMfUZSwI=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=i5krKVOBdhTdBUblIBR+jcm8WsJwGRJfAWE98WX7Mc5xPqIwhW4bhZv/UqUusCRQMldA33ocj3gF1++kDrKEGV3o7ScSyijkwrk1bvTTqj7w1V9DrK7Wx0BGqlQ2bDirBzVSGv1jcNlyF86i+NISfLPKr5VZL6/G4OV1uB8LH2c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lunn.ch; spf=pass smtp.mailfrom=lunn.ch; dkim=pass (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b=307U86Bq; arc=none smtp.client-ip=156.67.10.101 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lunn.ch Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lunn.ch Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b="307U86Bq" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=cVx5qFKGIxYr/0RCHVr63o/16UqTO6KTePA888kXg4Y=; b=307U86Bqtd+yMgnNSYNVXOKiqs HYPIxAyXHp1ZLoTNbhsapdqYop76Kp9Z4FB5PXX78+8Zwfd0KyEsQdZHQKGtHJH2tEqmmVQGYVAiv LcgJVQMpxBnXa+W5kA8eilOfGNo3iZzx1iae71xwMjn4wd/sga1zLZFkV6QGpAu6jqaQ=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1sBvcg-00G9Ld-L9; Tue, 28 May 2024 14:08:10 +0200 Date: Tue, 28 May 2024 14:08:10 +0200 From: Andrew Lunn To: Thorsten Blum Cc: Nicolas Pitre , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Breno Leitao , Uwe =?iso-8859-1?Q?Kleine-K=F6nig?= , John Paul Adrian Glaubitz , Arnd Bergmann , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH net-next] net: smc91x: Refactor SMC_* macros Message-ID: References: <20240528104421.399885-3-thorsten.blum@toblux.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240528104421.399885-3-thorsten.blum@toblux.com> On Tue, May 28, 2024 at 12:44:23PM +0200, Thorsten Blum wrote: > Use the macro parameter lp directly instead of relying on ioaddr being > defined in the surrounding scope. > > Signed-off-by: Thorsten Blum > Suggested-by: Andrew Lunn Reviewed-by: Andrew Lunn Andrew