From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756683AbdKDLgW (ORCPT ); Sat, 4 Nov 2017 07:36:22 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:39644 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752553AbdKDLgU (ORCPT ); Sat, 4 Nov 2017 07:36:20 -0400 Date: Sat, 4 Nov 2017 12:36:32 +0100 From: Greg KH To: Oleksandr Shamray Cc: arnd@arndb.de, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, openbmc@lists.ozlabs.org, joel@jms.id.au, jiri@resnulli.us, tklauser@distanz.ch, linux-serial@vger.kernel.org, mec@shout.net, vadimp@mellanox.com, system-sw-low-level@mellanox.com, robh+dt@kernel.org, openocd-devel-owner@lists.sourceforge.net, linux-api@vger.kernel.org, davem@davemloft.net, mchehab@kernel.org, Jiri Pirko Subject: Re: [patch v11 1/4] drivers: jtag: Add JTAG core driver Message-ID: <20171104113632.GC24583@kroah.com> References: <1509724449-26221-1-git-send-email-oleksandrs@mellanox.com> <1509724449-26221-2-git-send-email-oleksandrs@mellanox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1509724449-26221-2-git-send-email-oleksandrs@mellanox.com> User-Agent: Mutt/1.9.1 (2017-09-22) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 03, 2017 at 05:54:06PM +0200, Oleksandr Shamray wrote: > diff --git a/include/uapi/linux/jtag.h b/include/uapi/linux/jtag.h > new file mode 100644 > index 0000000..0b25a83 > --- /dev/null > +++ b/include/uapi/linux/jtag.h > @@ -0,0 +1,117 @@ > +/* > + * JTAG class driver > + * > + * Copyright (c) 2017 Mellanox Technologies. All rights reserved. > + * Copyright (c) 2017 Oleksandr Shamray > + * > + * Released under the GPLv2/BSD. > + * SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause Minor nit, this should go on the first line of the .h file now, to match the rest of the kernel (just happened, not your fault.) Also, uapi files are not just GPLv2, they have the userspace exception, so this should just be: SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note no need to add any BSD stuff to it at all. thanks, greg k-h