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=-3.8 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 autolearn=no 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 DFD61C43603 for ; Tue, 17 Dec 2019 13:42:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B737520733 for ; Tue, 17 Dec 2019 13:42:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576590160; bh=gJ8rVUCztw8szvbFFB6ChRg1w1nBW7WHuA2nM6G+gEg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=bkJgTTpqScf25ahmSRLPAYc6+USdeQZG5z4DDp1uG2WgWIEVZAj879f0RMkQOeFAs 5RQbRTVJNPP+7/O/3hAPVyLg/ekILVlabz39MeAoPHVilxF4U5MKaUHgsPloX+f7kx 72CepFCqTu+awL7OTd+sCwjzZS11YQ24SO7nm70g= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728443AbfLQNmj (ORCPT ); Tue, 17 Dec 2019 08:42:39 -0500 Received: from mail.kernel.org ([198.145.29.99]:39874 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727962AbfLQNmi (ORCPT ); Tue, 17 Dec 2019 08:42:38 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (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 E1AB220717; Tue, 17 Dec 2019 13:42:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576590158; bh=gJ8rVUCztw8szvbFFB6ChRg1w1nBW7WHuA2nM6G+gEg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=G/7OlukgjIYXWMiAYP+RpVQ09G0T4Q8OBkrDufcj6C3MhUQI7k0M+is1IKfT6hRuI g+L3m5nUdyPYYnXvzPiYC7JW4JgcPFiWzKaewa/LFUhaA01Z3O1LIihKH/z5/Ibwkp aNNCv2Zl4a/r5cDzC7vNR3oAxLTd8Cg2HRo59PNI= Date: Tue, 17 Dec 2019 14:42:36 +0100 From: Greg Kroah-Hartman To: Masahiro Yamada Cc: Jiri Slaby , Michal Marek , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] tty: vt: move conmakehash to drivers/tty/vt/ from scripts/ Message-ID: <20191217134236.GA3365333@kroah.com> References: <20191217110633.8796-1-masahiroy@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191217110633.8796-1-masahiroy@kernel.org> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Dec 17, 2019 at 08:06:33PM +0900, Masahiro Yamada wrote: > scripts/conmakehash is only used for generating > drivers/tty/vt/consolemap_deftbl.c > > Move it to the related directory. > > Signed-off-by: Masahiro Yamada > --- > > drivers/tty/vt/.gitignore | 1 + > drivers/tty/vt/Makefile | 6 ++++-- > {scripts => drivers/tty/vt}/conmakehash.c | 0 > scripts/.gitignore | 1 - > scripts/Makefile | 3 --- > 5 files changed, 5 insertions(+), 6 deletions(-) > rename {scripts => drivers/tty/vt}/conmakehash.c (100%) I thought we wanted scripts to be in the scripts directory :) Anyway, this is fine, I'll take it in my tree. thanks, greg k-h