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=-8.2 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_MUTT 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 6C729C31E57 for ; Mon, 17 Jun 2019 12:57:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3F1A2208E4 for ; Mon, 17 Jun 2019 12:57:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1560776227; bh=xdETj5mf6aeUoLj5hEhq8+dwhZFws6OLsC2VvsYVJ5o=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=mHSfJmmxd4ccZHakv5FM/vtVnBXo7jUqsHDirrO5xgTZ1gXzfe9q9SChzaIQzEiIr rnE8pQpkPWiZOR3T5EOrNt0q12GJvjQrzqUqCXsZ14dLPSUlsv+mk+aIm9VLJVxQPa W/zdqBMSsv/OhoaoLs2SDHNMHzJRe3NNFXhc8T9I= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728076AbfFQM5F (ORCPT ); Mon, 17 Jun 2019 08:57:05 -0400 Received: from mail.kernel.org ([198.145.29.99]:60212 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726286AbfFQM5F (ORCPT ); Mon, 17 Jun 2019 08:57:05 -0400 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 57C212089E; Mon, 17 Jun 2019 12:57:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1560776224; bh=xdETj5mf6aeUoLj5hEhq8+dwhZFws6OLsC2VvsYVJ5o=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=nsEF4PxvDA0r6DHB4M8Djp8eU2sl7B8TBIQry4L9GCDem3Dfb8yTpDqmotIUb0OZy hZpHMWVKkPrWYMhyuTH5/sQkNhYAP9BD8EXtxx9xuT7EXQPVLEeRcIM8v4VM5TfdW6 Q6QpII6vbYQCzD3w6o6EMQjuqfgzdxkH8KHx218o= Date: Mon, 17 Jun 2019 14:57:02 +0200 From: Greg Kroah-Hartman To: Mauro Carvalho Chehab Cc: Linux Doc Mailing List , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet Subject: Re: [PATCH v2 03/16] scripts: add an script to parse the ABI files Message-ID: <20190617125702.GA20042@kroah.com> References: <3b8d7c64f887ddea01df3c4eeabc745c8ec45406.1560534648.git.mchehab+samsung@kernel.org> <680fb978ef9322c705eca9927c79b220cd3ccc4a.1560534648.git.mchehab+samsung@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <680fb978ef9322c705eca9927c79b220cd3ccc4a.1560534648.git.mchehab+samsung@kernel.org> User-Agent: Mutt/1.12.1 (2019-06-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jun 14, 2019 at 02:52:17PM -0300, Mauro Carvalho Chehab wrote: > Add a script to parse the Documentation/ABI files and produce > an output with all entries inside an ABI (sub)directory. > > Right now, it outputs its contents on ReST format. It shouldn't > be hard to make it produce other kind of outputs, since the ABI > file parser is implemented in separate than the output generator. > > Signed-off-by: Mauro Carvalho Chehab > --- > scripts/get_abi.pl | 212 +++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 212 insertions(+) > create mode 100755 scripts/get_abi.pl > > diff --git a/scripts/get_abi.pl b/scripts/get_abi.pl > new file mode 100755 > index 000000000000..f7c9944a833c > --- /dev/null > +++ b/scripts/get_abi.pl > @@ -0,0 +1,212 @@ > +#!/usr/bin/perl > + Ok, I was going to apply this, but there is no SPDX line on the script. Can you resend this series with that on it, so that I can apply the patches of the series that adds the script to the kernel tree? thanks, greg k-h