From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 82CC3367; Sun, 19 Nov 2023 00:22:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ogU1lkuB" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2133BC433C8; Sun, 19 Nov 2023 00:22:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1700353335; bh=njhZ+VEXY43nM/ztzb1ihZasqdd6Cd8C+mifV4uY/i8=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=ogU1lkuBP7h3e4Pzq67ZPDXlPApu6eBJFWXVCwbtfba0b6iRlchETP6JbVXt2Kg84 WZk1ID/f0CPrv4pqA0cFpbM6CD2vfLwYyXNFHF0caNHVbUBFKA2xzPmG2C8foB+24A RPnMARKe0y7cL6DzwBSiqWCXhErVcnGHSFb7MUCG2zk7jFXAaVKLPiltp08JGmHpB7 B1QVwwqNMEfvL5Vx6tdlZQIHR7TqrYaHPZziEtgbJn1C4GiUkiCf3X8GZj/N2bRWcK fic+xmWgPANV0O9gwxO5dLDpwlMzmyNWqsoLqQXjk2UjsuYY810GFeH9mrD/awKNP6 ZSP1DPLEUqe7A== Date: Sat, 18 Nov 2023 16:22:14 -0800 From: Jakub Kicinski To: Luo Jie Cc: , , , , , , , , , , , , , Subject: Re: [PATCH v5 4/6] net: phy: at803x: add the function phydev_id_is_qca808x Message-ID: <20231118162214.7093d46c@kernel.org> In-Reply-To: <20231118062754.2453-5-quic_luoj@quicinc.com> References: <20231118062754.2453-1-quic_luoj@quicinc.com> <20231118062754.2453-5-quic_luoj@quicinc.com> Precedence: bulk X-Mailing-List: devicetree@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 Sat, 18 Nov 2023 14:27:52 +0800 Luo Jie wrote: > +static inline bool phydev_id_is_qca808x(struct phy_device *phydev) Please drop the "inline" keyword. The compiler will decide what's best.