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 88E3E1DE8A4; Sun, 14 Sep 2025 18:56:05 +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=1757876167; cv=none; b=dsTpr3nQHK/+owmfMAIcs8GbeeZTur3cIcXSjhYQ7qFuT/vf0IXYk/3ywP05ivhNpskYP++HxJACo4EyTlscFiuampymI4J9KUfgTQbc+RoMHboAbpZRNrGw2wLAeKXxLmo6AhiQN/VBV/o5LyY5f/VhMMlFtK16IsAANXlJbk0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757876167; c=relaxed/simple; bh=owSCmTywugDQT5TmSEcAhrDCWd18bU9phloIb4CEgt0=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Hz3eYVPU9Sra1kXR+zb6kI8qOPtUvU4Y6uw3IInB0e504hy/gHHbYQ9FYFaPA1vzmYs4CtDdo0Lr5/dtiY1xrJ7G64DOPffzoaFvXwIWyufIcQlfebTDl56McLWZ+0OpaL7K5FOHAFC4puI6RcRFPHsKXPFjlOUlB6Gkgg4lTH4= 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=qCDfEqdC; 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="qCDfEqdC" 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=XLxHUmBnsIL7oqRRVA9M1wQh0Xlcvzf20qSXcEazRTI=; b=qCDfEqdCebqShsXWd9Kx86iupW MIT4c5zj1K90xUZfvRioN/LPt+PEmf8MbctDv8Isvns/MHU6KWGfAIEMeEgk6m2LP67QGMdMJgr4F S7AaeM0XlzoABzJgWGX0FsvqKMxkRzEBG4eJXtbSg5et9a/f+3twErBuDt1rY3nllRXo=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1uxrtF-008MXn-VN; Sun, 14 Sep 2025 20:55:57 +0200 Date: Sun, 14 Sep 2025 20:55:57 +0200 From: Andrew Lunn To: Yeounsu Moon Cc: Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH net v2 1/2] net: dlink: fix whitespace around function call Message-ID: References: <20250914182653.3152-2-yyyynoom@gmail.com> <20250914182653.3152-3-yyyynoom@gmail.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: <20250914182653.3152-3-yyyynoom@gmail.com> On Mon, Sep 15, 2025 at 03:26:53AM +0900, Yeounsu Moon wrote: > Remove unnecessary whitespace between function names and the opening > parenthesis to follow kernel coding style. > > No functional change intended. > > Tested-on: D-Link DGE-550T Rev-A3 > Signed-off-by: Yeounsu Moon Reviewed-by: Andrew Lunn Andrew