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=-14.0 required=3.0 tests=BAYES_00,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 D776DC433DB for ; Wed, 20 Jan 2021 21:39:34 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (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 8F0C3235F7 for ; Wed, 20 Jan 2021 21:39:34 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8F0C3235F7 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id BD6A46E19A; Wed, 20 Jan 2021 21:39:33 +0000 (UTC) Received: from mail-ot1-f45.google.com (mail-ot1-f45.google.com [209.85.210.45]) by gabe.freedesktop.org (Postfix) with ESMTPS id 114696E19A; Wed, 20 Jan 2021 21:39:33 +0000 (UTC) Received: by mail-ot1-f45.google.com with SMTP id 34so14010569otd.5; Wed, 20 Jan 2021 13:39:33 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=7CQ3HB1nTNFRMwomepbdzCXSM0Vunqc4+WhRW4CgReg=; b=GR8vv4aKGjlwiFiQP/hLrg3r4wkCfGEBqWMNytF34pq5Hf9mrRatBrWyLiLJbMI6Hs cGNlmA5GcXJLQ0YQknwWjPJfUxrYuLBgEpYwUcbs9Zvc/cB3ORxC7wWetXrAvTtTZdcC IYp+D0S6R2zmWRBEuqpfLedOFzpbgFHZgTq55E2efbOmMq2nHdIrI87vw9FS1Mgb5DCX QCSWavs+Yr3z8/ju4srOK8yK6FW7zotp7YsJtGm1xzgFYSAY1zhBOtdtjPjzn9871YWk THt+vBg+0jSxPfMSbjPScXGAlo+M+/X9a4Wi1WGr4Vm4s8NKTi6otL8AoLfXsf/MgOTu ZBxg== X-Gm-Message-State: AOAM533j4d9edDUL3h+6WfyWioWK0fvYVCBzwt1rVfQTthRE4i5SaaQb mKYUIxnaieV53heo1c1iOw== X-Google-Smtp-Source: ABdhPJzGDS+Z9qNM9dct2YDH/2pXy5NEBm+Yj/vIMrRQLRDGQVMBKKxSHAjSx6WNW2sbX8BiGlOZHw== X-Received: by 2002:a05:6830:1e19:: with SMTP id s25mr8204614otr.249.1611178772240; Wed, 20 Jan 2021 13:39:32 -0800 (PST) Received: from robh.at.kernel.org (24-155-109-49.dyn.grandenetworks.net. [24.155.109.49]) by smtp.gmail.com with ESMTPSA id 70sm657133otf.39.2021.01.20.13.39.30 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 20 Jan 2021 13:39:30 -0800 (PST) Received: (nullmailer pid 880940 invoked by uid 1000); Wed, 20 Jan 2021 21:39:29 -0000 Date: Wed, 20 Jan 2021 15:39:29 -0600 From: Rob Herring To: Masahiro Yamada Subject: Re: [PATCH] kbuild: use always-y instead of extra-y Message-ID: <20210120213929.GA875847@robh.at.kernel.org> References: <20210120062351.3011786-1-masahiroy@kernel.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210120062351.3011786-1-masahiroy@kernel.org> X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: devicetree@vger.kernel.org, Michal Marek , linux-kbuild@vger.kernel.org, David Airlie , Jan Kiszka , intel-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org, Rodrigo Vivi , dri-devel@lists.freedesktop.org, Kieran Bingham Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Wed, Jan 20, 2021 at 03:23:51PM +0900, Masahiro Yamada wrote: > As commit d0e628cd817f ("kbuild: doc: clarify the difference between > extra-y and always-y") explained, extra-y should be used for listing > the prerequsites of vmlinux. always-y is a better fix here. prerequisites Glad to see this clarified. I think just tried both and picked one. Reviewed-by: Rob Herring > > Signed-off-by: Masahiro Yamada > --- > > Documentation/devicetree/bindings/Makefile | 8 ++++---- > drivers/gpu/drm/i915/Makefile | 2 +- > scripts/Makefile.lib | 10 +++++----- > scripts/gdb/linux/Makefile | 2 +- > 4 files changed, 11 insertions(+), 11 deletions(-) _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel