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 X-Spam-Level: X-Spam-Status: No, score=-5.5 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_2 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 936F4C433DF for ; Sun, 28 Jun 2020 19:09:59 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 583E7206C0 for ; Sun, 28 Jun 2020 19:09:59 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="QhIK5TvX" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 583E7206C0 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=goodmis.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To:Message-ID: Subject:To:From:Date:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=63eVZbgdXt2kQMEUq4jXYG8zy70nAkJxl3kxloctv/c=; b=QhIK5TvXcy5XHZ5LClCKjXX87 CEfXExH6gonv5ipvkM5WBK+83+nZqRwQLPHryolz2GoNVdABWJbWxwd7wVVF8VL6lvvQNnS2005Io mrq2bW/JHAz77nYTAieHctr8DTadDeGwk2lzMgz3DlIzO4+8YXzpOoznY6ktxuKgkQqBhR5tORWsa yyNrRRBVK1SXFdSL7nYKwzzPcaPT0H2OaCUcDSrDC01UnuzxJKyQIIcgTdRdnizGUBt9r7TxKTNHz 8lvTJJ3DywiAk45N/WX0CdfX16r+3vnbKgjnZBipodi5YOI9k/tUnZaFmFL16nk8ZrrDacvAasyV6 l0GiM4gKw==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jpceo-0005ix-FY; Sun, 28 Jun 2020 19:08:02 +0000 Received: from mail.kernel.org ([198.145.29.99]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1jpcel-0005ic-Kn for linux-arm-kernel@lists.infradead.org; Sun, 28 Jun 2020 19:08:00 +0000 Received: from oasis.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 669E0204EA; Sun, 28 Jun 2020 19:07:57 +0000 (UTC) Date: Sun, 28 Jun 2020 15:07:55 -0400 From: Steven Rostedt To: Masahiro Yamada Subject: Re: [PATCH] kbuild: introduce ccflags-remove-y and asflags-remove-y Message-ID: <20200628150755.523fbb2c@oasis.local.home> In-Reply-To: <20200628015041.1000002-1-masahiroy@kernel.org> References: <20200628015041.1000002-1-masahiroy@kernel.org> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michal Marek , Yoshinori Sato , linux-kbuild@vger.kernel.org, Michael Ellerman , linux-sh@vger.kernel.org, linux-kernel@vger.kernel.org, Russell King , linuxppc-dev@lists.ozlabs.org, Ingo Molnar , Paul Mackerras , Sami Tolvanen , Benjamin Herrenschmidt , Rich Felker , linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Sun, 28 Jun 2020 10:50:41 +0900 Masahiro Yamada wrote: > CFLAGS_REMOVE_.o works per object, that is, there is no > convenient way to filter out flags for every object in a directory. > > Add ccflags-remove-y and asflags-remove-y to make it easily. > > Use ccflags-remove-y to clean up some Makefiles. > > Suggested-by: Sami Tolvanen > Signed-off-by: Masahiro Yamada > --- Nice feature! Acked-by: Steven Rostedt (VMware) -- Steve _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel