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 C716715D5A0; Wed, 29 May 2024 23:02:49 +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=1717023771; cv=none; b=TMGNG2vVeBDgPphewE01Ssu2bfBxGNfL1HouchnBw1iyuRHkmxQgKyMNE4D3m8CDKaUxMDDEPXDe88At6LTD8xa/GJI2qe6kXVyHwwcwlz5eFy4ds3DtcJ+wFTwr9BbX4XdDiVVk9j9aH8iGxYKfY6/KYnVv4AHsnpMHPqY1Plg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717023771; c=relaxed/simple; bh=Ki6OB4kf0d+GQ3AEcaw1nNvdeZ0HvyOOaDOYtve29L8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=QJby1JRCpApU/Knm6VTDz2sPkT3Yhgn25C4/acCC9Ao/2FxLwAdX5FycUo4SdQqZhTMtqPCysVh64fr+qv1cb2nhSz1bCIrcqnCoA3cIMuNLtQIovWdxwoCU4LUfYAO6jmv/qVxbbvk1S/sGp00aSDy5nJvjCUwSi5Zts6iJIY4= 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=VOWffBz4; 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="VOWffBz4" 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=NaqPsF+YNHjwUDf2w9rBdP367AFBYc/O3af88711Nu4=; b=VOWffBz4rAP4fZi7xgoTgXlzwV RYdScfYw3LtW64Vt2ZRc6z7jvmHxM0Ed9C8p+BAqiiCwboGFLT8Kpf/KhJtVSIE5MQC9lxjcjL4nY 37FQfzRc76zBcltN0Pk2q3srKsS9F1Yojw5SaNSJwWlvC19ZE4ot83Rw89980UOh96r0=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1sCSJZ-00GIaB-AM; Thu, 30 May 2024 01:02:37 +0200 Date: Thu, 30 May 2024 01:02:37 +0200 From: Andrew Lunn To: Kory Maincent Cc: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Donald Hunter , Oleksij Rempel , Thomas Petazzoni , linux-kernel@vger.kernel.org, netdev@vger.kernel.org, Dent Project , kernel@pengutronix.de Subject: Re: [PATCH 1/8] net: pse-pd: Use EOPNOTSUPP error code instead of ENOTSUPP Message-ID: <1e80a2aa-fa3a-4f90-ae43-d4e91e4fa80f@lunn.ch> References: <20240529-feature_poe_power_cap-v1-0-0c4b1d5953b8@bootlin.com> <20240529-feature_poe_power_cap-v1-1-0c4b1d5953b8@bootlin.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: <20240529-feature_poe_power_cap-v1-1-0c4b1d5953b8@bootlin.com> On Wed, May 29, 2024 at 04:09:28PM +0200, Kory Maincent wrote: > From: "Kory Maincent (Dent Project)" > > ENOTSUPP is not a SUSV4 error code, prefer EOPNOTSUPP as reported by > checkpatch script. > > Signed-off-by: Kory Maincent Reviewed-by: Andrew Lunn Andrew