From patchwork Wed Feb 19 01:15:19 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 11390177 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 248B9139A for ; Wed, 19 Feb 2020 01:15:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0541424656 for ; Wed, 19 Feb 2020 01:15:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1582074955; bh=dgqtIWD0L8ScdXh2q1SSLy1IjtKo/3HQUJh/ytmk58w=; h=From:To:Cc:Subject:Date:List-ID:From; b=Kf7JqWvn3jzFD7bxDJu1g1Yo2Q44CVgxW1cA6qT3IRCuDeCdOYzyYijYPwwD3cc58 wZLdThYdEFJLpe+AkHizcT3KN/WKdWSyz7eSX2jLzHXgt3rqsL0bxrPs1dAGUkpx2t CJWVGkxBovjpZ5XjfSszI5+zy0wk3apOGvF9aiSQ= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727400AbgBSBPy (ORCPT ); Tue, 18 Feb 2020 20:15:54 -0500 Received: from conuserg-12.nifty.com ([210.131.2.79]:49770 "EHLO conuserg-12.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726757AbgBSBPy (ORCPT ); Tue, 18 Feb 2020 20:15:54 -0500 Received: from grover.flets-west.jp (softbank126093102113.bbtec.net [126.93.102.113]) (authenticated) by conuserg-12.nifty.com with ESMTP id 01J1FOWs024252; Wed, 19 Feb 2020 10:15:24 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-12.nifty.com 01J1FOWs024252 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1582074924; bh=x5q5ov7Cw9u4udBCfk7SDYEcaEVCvCFCUa560+L2gIs=; h=From:To:Cc:Subject:Date:From; b=eF5b7/rIckmhO2sOvwLQL9BB6SHnKop2wzh2JAeGOq/pgEGJcaJ3/Borx/3jcbezx WMcIWG7EYsk74t+c3W3gf4SjFOFpEFYtjT/wvunZBZSW35zCQl4yTq7naU1LcOZJw+ J5y+3WDYgKwmxQmiQQMwXVKWwfx5sMVI06zs+bt/VV3XukBUZhxfizVgx67si5LoTe 8A8Jhqqo2DIjfNak/lVGGvUGcAh/uyDQmoNQ7q1CgVQnGcx0JLjlNnvXMMqhzM11kw OntSOjubpo8yhLemFkY/5r9asuS0UxgGCGAJCV2cIAbasEXctcuZG4jtcXnNt/44Uw uwHjJkrHXA8AA== X-Nifty-SrcIP: [126.93.102.113] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , Jonathan Corbet , Michal Marek , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] kbuild: remove wrong documentation about mandatory-y Date: Wed, 19 Feb 2020 10:15:19 +0900 Message-Id: <20200219011519.22148-1-masahiroy@kernel.org> X-Mailer: git-send-email 2.17.1 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org This sentence does not make sense in the section about mandatory-y. This seems to be a copy-paste mistake of commit fcc8487d477a ("uapi: export all headers under uapi directories"). The correct description would be "The convention is to list one mandatory-y per line ...". I just removed it instead of fixing it. If such information is needed, it could be commented in include/asm-generic/Kbuild and include/uapi/asm-generic/Kbuild. Signed-off-by: Masahiro Yamada --- Documentation/kbuild/makefiles.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/Documentation/kbuild/makefiles.rst b/Documentation/kbuild/makefiles.rst index 0e0eb2c8da7d..4018ad7c7a11 100644 --- a/Documentation/kbuild/makefiles.rst +++ b/Documentation/kbuild/makefiles.rst @@ -1379,9 +1379,6 @@ See subsequent chapter for the syntax of the Kbuild file. in arch/$(ARCH)/include/(uapi/)/asm, Kbuild will automatically generate a wrapper of the asm-generic one. - The convention is to list one subdir per line and - preferably in alphabetic order. - 8 Kbuild Variables ==================