From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 91B51C43334 for ; Sun, 5 Jun 2022 13:02:37 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 15B3083B68; Sun, 5 Jun 2022 15:02:35 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="nFQlrqWI"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id BCC018331B; Sun, 5 Jun 2022 15:02:33 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 49F2683E60 for ; Sun, 5 Jun 2022 15:02:31 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=kabel@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 119CC60F08; Sun, 5 Jun 2022 13:02:29 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id EADA7C385A5; Sun, 5 Jun 2022 13:02:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1654434148; bh=GjWGYEs2yubBzxt4SFSHF2IZEo2PTzIl1mofN9DnKDk=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=nFQlrqWI3ztdhelEalMhi+d3wzH1iIu+PwpAIGhFkJhMR/MYBKb8dagfZ8DCj5e+I BD3BCON0cwmynP9L1vLZz1A+Lx3pWi239R8679siU62wgGM78Hoomaq7VRinPr/Y/d 61FhVoqitmNZ1eSoxh0SQhDOwaBPp9o/q8EFYOXmew05yge4P9Vc3ADxCsv0CmgVWi AiAIedE7DXYo5tBD60mQh/o2pm9+0pU3q7bnUL//KM8CESM0uU/NnN9WRjy97/i0DW uzkLc4uGkidth27aCdm/eZmuJvZ8XMi6EKpKy9+5jpa0Odw+OTNuMQDBRHljyaj5Q7 HvXri8FfRZ/1g== Date: Sun, 5 Jun 2022 15:02:21 +0200 From: Marek =?UTF-8?B?QmVow7pu?= To: Ramon Fried Cc: vladimir.oltean@nxp.com, t.karthik.reddy@xilinx.com, michal.simek@amd.com, ariel.dalessandro@collabora.com, michael@amarulasolutions.com, wd@denx.de, nate.d@variscite.com, radu-nicolae.pirea@oss.nxp.com, u-boot@lists.denx.de, rasmus.villemoes@prevas.dk Subject: Re: [PATCH] net: phy: Remove inline definitions from convinience functions Message-ID: <20220605150221.3dc8fb86@thinkpad> In-Reply-To: <20220605004415.2933536-1-rfried.dev@gmail.com> References: <20220605004415.2933536-1-rfried.dev@gmail.com> X-Mailer: Claws Mail 3.18.0 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean On Sun, 5 Jun 2022 03:44:15 +0300 Ramon Fried wrote: > The convinience functions are not that small and they caused > bloated text segments because of their usage. > There was no need to inline them in the first place, as > they're not part of a fastpath. Reviewed-by: Marek Beh=C3=BAn