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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6B764C433EF for ; Fri, 1 Oct 2021 11:59:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5273761A82 for ; Fri, 1 Oct 2021 11:59:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1354192AbhJAMBc (ORCPT ); Fri, 1 Oct 2021 08:01:32 -0400 Received: from mail.kernel.org ([198.145.29.99]:43988 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230510AbhJAMBb (ORCPT ); Fri, 1 Oct 2021 08:01:31 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 6C09961A05; Fri, 1 Oct 2021 11:59:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1633089587; bh=ArSVrDrRl5VLN57bSGxGInuPa+Tz4UEH754s1g6KYZI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=z71CBi6WRIVTWiRMNrH38wVP4NehPIE+e40ML1h7mpw0iz5SSfrwiq4ywzs4VMtWm McVurSfkFyMPg+9m7b0E8pCR/+dkz19vbPCy5kvkyXB2ifFBLieYTIA9CauPfu6bUU E6waxhkIHFwcK51tS1fQkUz6cpBNuZ3Y/bLsiOfg= Date: Fri, 1 Oct 2021 13:59:45 +0200 From: Greg Kroah-Hartman To: Andy Shevchenko Cc: Tomas Winkler , Alexander Usyskin , Uwe =?iso-8859-1?Q?Kleine-K=F6nig?= , linux-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org, Arnd Bergmann , Christoph Hellwig , Masahiro Yamada , Michal Marek , Nick Desaulniers Subject: Re: [PATCH v3 1/4] modpost: Mark uuid_le type only for MEI Message-ID: References: <20211001113747.64040-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211001113747.64040-1-andriy.shevchenko@linux.intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Oct 01, 2021 at 02:37:44PM +0300, Andy Shevchenko wrote: > The uuid_le type is used only for MEI ABI, do not advertise it for others. > Due to above, bury add_uuid() in its only user. Why not just remove it from the user and move to using guid_t instead? And then remove this code entirely? thanks, greg k-h