From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 84EAA73463; Thu, 4 Jun 2026 00:52:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780534367; cv=none; b=Yr0hB63h7pGyeoggsVmigon5aVrcYJ7Qk+qetXf8+XsDHnJ9Ll7PWzTwqjUx0B4uAT59myezZyEuwqBcCrVN6sE49Wi/8HzaP23VBIdIbus23FhDhn5AGJ9P/j01n631o5GtDDPn4mp5pY70NT74K8Mnj0U5Cpzg1qBgffPtW1w= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780534367; c=relaxed/simple; bh=5eS6mGy0XcuxMWjVnk9W9w/s9NaxdSZ6Z569lfx/1Sk=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=rfWQr0/uhNmd8ttVNLdf9PiLIOVTUNCw7RE74SoPKzjz3t0yE286P+SIUoCMWrfaRQMeak+9fiyXjNYzWEqNqb5+eWD3n9Cssg4Lq9KYec2otxP1iXnbmGB0l57GNTMY7/aYxU9egLlxwEGG+Vg1/1Wu9Hn65PYp2vnqqQervoo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=oL48xzWV; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="oL48xzWV" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8CA391F00893; Thu, 4 Jun 2026 00:52:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1780534366; bh=5eS6mGy0XcuxMWjVnk9W9w/s9NaxdSZ6Z569lfx/1Sk=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=oL48xzWVllHJHqwZ7z1CLg5Z77CS068Zq2NxKnnIaZaEuzKRzScaLOUHkzW9J+CTL 2zPAtnPKDVp0bEFx06G7vxahKBZGQmxr5391iYC0J9Z6K03xQf6n462mM1qT19NGiH bFSod5PtG+u1SBs6OZGWi7Czj/f1o6Ms/o/YACtlS+yhsBSRNs+WKG6C6tzGPwRMcA p5KIvkHOtyHRII91dQfL2PjGFpSn8ZyemEbPJWgZ3F15W1rpUQa/ZX2UKopNZNxZGX Y7YhgBj55j+d2vz9CkdYkVkybJg6dCRywoONy8vKLfPtlpI+NeM5pGMjJWeQ2dTaPv 13DULhE88VwJg== Date: Wed, 3 Jun 2026 17:52:44 -0700 From: Jakub Kicinski To: Luiz Angelo Daros de Luca Cc: Andrew Lunn , Vladimir Oltean , "David S. Miller" , Eric Dumazet , Paolo Abeni , Simon Horman , Linus Walleij , Alvin =?UTF-8?B?xaBpcHJhZ2E=?= , Yury Norov , Rasmus Villemoes , Russell King , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Mieczyslaw Nalewaj Subject: Re: [net-next PATCH v11 4/9] net: dsa: realtek: rtl8365mb: prepare for multiple source files Message-ID: <20260603175244.0950094e@kernel.org> In-Reply-To: <20260531-realtek_forward-v11-4-50d60f5717e8@gmail.com> References: <20260531-realtek_forward-v11-0-50d60f5717e8@gmail.com> <20260531-realtek_forward-v11-4-50d60f5717e8@gmail.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sun, 31 May 2026 23:53:19 -0300 Luiz Angelo Daros de Luca wrote: > The trailing backslash in the Makefile is deliberate. It allows for new > files to be added without clobbering git history. FWIW maybe just my personal preference but I'd add a trailing comment for this, IOW: rtl8365mb-objs := rtl8365mb_main.o \ # end of rtl8365mb-objs This way it's less likely someone will add a line here without realizing it will become part of the previous statement.