From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-04.galae.net (smtpout-04.galae.net [185.171.202.116]) (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 371DDDF76; Tue, 6 Jan 2026 08:44:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.171.202.116 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767689102; cv=none; b=hlfhVb52NzLym74nptEyGS6IsIh1DMwQgE0y2BhM6+zTrmif5lnHqPPmCR5BaUsyxwjYRyvhgGxTMjNTYHVhjqqKfcG8MrNhEd7FfrmPUYbdrUFtDmMe82YxQ447fqAL2b+gjQnVlJ3g4mZcBHegDPmA6UjHKDCeTYl8e/DjxH4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767689102; c=relaxed/simple; bh=94bAVZ52l0KeJaZiEMSm/OASvaUJtYZtqxylN11cdcI=; h=Message-ID:Date:MIME-Version:Subject:To:References:From: In-Reply-To:Content-Type; b=G59XsmdeGQrgrsEGdLlV8LODJg8TG0stIzsUbMrvSQ84SpJ6Bbz4CnnZcPXwfkL/IW1cBmf1At17Z5YLmYOJ1boAgGOAVf08PPSvBOL5kk4WZPNL+67+JHBUUMkNuQ9tXOmdnoHtNoL4x/RJPJuLGE52oj4KP5wvoHv/7RhvfCw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=xtJTlPZr; arc=none smtp.client-ip=185.171.202.116 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="xtJTlPZr" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-04.galae.net (Postfix) with ESMTPS id 2D536C1E4A6; Tue, 6 Jan 2026 08:44:26 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 27A8260739; Tue, 6 Jan 2026 08:44:52 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id DA65A103C8144; Tue, 6 Jan 2026 09:44:44 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1767689091; h=from:subject:date:message-id:to:mime-version:content-type: content-transfer-encoding:content-language:in-reply-to:references; bh=tamMdge4qbsDWP+XZCmZSUNv3pozpuz2jKgDkw1Lk/4=; b=xtJTlPZr7MGvTIQfcBMHcsgDXGaeuE+y6On4q2uscEfxBNs9yTcAJC0HP6OyFv1mLrRkGw 7Z1TibJso+LQnBlQwZqoz825oY9dy9m84fcgtNhsaF1rXAOMvIe3EyveRGcExoAaX9OFYx 0SdLp3KGeT0NcfQFoie4iHpnsLIfwBYzRU2szeYMFOJe/RIB6qav4cSJ/u027jpvkOGTvw 21gCYSpa52o5Va4eO4O9KRPZldUnSEbiNPwqZTOFfIZDBGrY9R3inoJeTKgenjZmUdi4eD 6pnb2mfC+6xdvkSgkUc5AAano+RxvzMFagAeFqrkjQ3hSWkk43KP28lRKugzPA== Message-ID: <2c63fc58-7081-4e6b-a8ee-3d1e9aaffbe9@bootlin.com> Date: Tue, 6 Jan 2026 09:44:43 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH net-next v2 1/5] net: phy: realtek: fix whitespace in struct phy_driver initializers To: Daniel Golle , Andrew Lunn , Heiner Kallweit , Russell King , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Vladimir Oltean , Michael Klein , Aleksander Jan Bajkowski , Bevan Weiss , netdev@vger.kernel.org, linux-kernel@vger.kernel.org References: <42b0fac53c5c5646707ce3f3a6dacd2bc082a5b2.1767630451.git.daniel@makrotopia.org> From: Maxime Chevallier Content-Language: en-US In-Reply-To: <42b0fac53c5c5646707ce3f3a6dacd2bc082a5b2.1767630451.git.daniel@makrotopia.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Last-TLS-Session-Version: TLSv1.3 Hello Daniel, On 05/01/2026 17:37, Daniel Golle wrote: > Consistently use tabs instead of spaces in struct phy_driver > initializers. > > Signed-off-by: Daniel Golle Reviewed-by: Maxime Chevallier Maxime