linux-spdx.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] RDMA/irdma: make spdxcheck.py happy
@ 2021-07-01 10:41 Lukas Bulwahn
  2021-07-07 16:58 ` Nikolova, Tatyana E
  2021-07-12 18:03 ` Jason Gunthorpe
  0 siblings, 2 replies; 3+ messages in thread
From: Lukas Bulwahn @ 2021-07-01 10:41 UTC (permalink / raw)
  To: Mustafa Ismail, Shiraz Saleem, Doug Ledford, Jason Gunthorpe, linux-rdma
  Cc: linux-spdx, linux-kernel, Lukas Bulwahn

Commit 48d6b3336a9f ("RDMA/irdma: Add ABI definitions") adds
./include/uapi/rdma/irdma-abi.h with an additional unneeded closing
bracket at the end of the SPDX-License-Identifier line.

Hence, ./scripts/spdxcheck.py complains:

  include/uapi/rdma/irdma-abi.h: 1:77 Syntax error: )

Remove that closing bracket to make spdxcheck.py happy.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
applies cleanly on next-20210701

Mustafa, Shiraz, please ack.
Jason, please pick this minor non-urgent patch into your rdma tree.

 include/uapi/rdma/irdma-abi.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/uapi/rdma/irdma-abi.h b/include/uapi/rdma/irdma-abi.h
index 26b638a7ad97..a7085e092d34 100644
--- a/include/uapi/rdma/irdma-abi.h
+++ b/include/uapi/rdma/irdma-abi.h
@@ -1,4 +1,4 @@
-/* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) OR Linux-OpenIB) */
+/* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) OR Linux-OpenIB */
 /*
  * Copyright (c) 2006 - 2021 Intel Corporation.  All rights reserved.
  * Copyright (c) 2005 Topspin Communications.  All rights reserved.
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH] RDMA/irdma: make spdxcheck.py happy
  2021-07-01 10:41 [PATCH] RDMA/irdma: make spdxcheck.py happy Lukas Bulwahn
@ 2021-07-07 16:58 ` Nikolova, Tatyana E
  2021-07-12 18:03 ` Jason Gunthorpe
  1 sibling, 0 replies; 3+ messages in thread
From: Nikolova, Tatyana E @ 2021-07-07 16:58 UTC (permalink / raw)
  To: Lukas Bulwahn, Ismail, Mustafa, Saleem, Shiraz, Doug Ledford,
	Jason Gunthorpe, linux-rdma
  Cc: linux-spdx, linux-kernel



> -----Original Message-----
> From: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> Sent: Thursday, July 1, 2021 3:41 AM
> To: Ismail, Mustafa <mustafa.ismail@intel.com>; Saleem, Shiraz
> <shiraz.saleem@intel.com>; Doug Ledford <dledford@redhat.com>; Jason
> Gunthorpe <jgg@ziepe.ca>; linux-rdma@vger.kernel.org
> Cc: linux-spdx@vger.kernel.org; linux-kernel@vger.kernel.org; Lukas
> Bulwahn <lukas.bulwahn@gmail.com>
> Subject: [PATCH] RDMA/irdma: make spdxcheck.py happy
> 
> Commit 48d6b3336a9f ("RDMA/irdma: Add ABI definitions") adds
> ./include/uapi/rdma/irdma-abi.h with an additional unneeded closing
> bracket at the end of the SPDX-License-Identifier line.
> 
> Hence, ./scripts/spdxcheck.py complains:
> 
>   include/uapi/rdma/irdma-abi.h: 1:77 Syntax error: )
> 
> Remove that closing bracket to make spdxcheck.py happy.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
> applies cleanly on next-20210701
> 
> Mustafa, Shiraz, please ack.
> Jason, please pick this minor non-urgent patch into your rdma tree.
> 
>  include/uapi/rdma/irdma-abi.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/uapi/rdma/irdma-abi.h b/include/uapi/rdma/irdma-abi.h
> index 26b638a7ad97..a7085e092d34 100644
> --- a/include/uapi/rdma/irdma-abi.h
> +++ b/include/uapi/rdma/irdma-abi.h
> @@ -1,4 +1,4 @@
> -/* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) OR Linux-
> OpenIB) */
> +/* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) OR
> +Linux-OpenIB */
>  /*
>   * Copyright (c) 2006 - 2021 Intel Corporation.  All rights reserved.
>   * Copyright (c) 2005 Topspin Communications.  All rights reserved.
> --
> 2.17.1

Acked-by: Tatyana Nikolova <tatyana.e.nikolova@intel.com>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] RDMA/irdma: make spdxcheck.py happy
  2021-07-01 10:41 [PATCH] RDMA/irdma: make spdxcheck.py happy Lukas Bulwahn
  2021-07-07 16:58 ` Nikolova, Tatyana E
@ 2021-07-12 18:03 ` Jason Gunthorpe
  1 sibling, 0 replies; 3+ messages in thread
From: Jason Gunthorpe @ 2021-07-12 18:03 UTC (permalink / raw)
  To: Lukas Bulwahn
  Cc: Mustafa Ismail, Shiraz Saleem, Doug Ledford, linux-rdma,
	linux-spdx, linux-kernel

On Thu, Jul 01, 2021 at 12:41:27PM +0200, Lukas Bulwahn wrote:
> Commit 48d6b3336a9f ("RDMA/irdma: Add ABI definitions") adds
> ./include/uapi/rdma/irdma-abi.h with an additional unneeded closing
> bracket at the end of the SPDX-License-Identifier line.
> 
> Hence, ./scripts/spdxcheck.py complains:
> 
>   include/uapi/rdma/irdma-abi.h: 1:77 Syntax error: )
> 
> Remove that closing bracket to make spdxcheck.py happy.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> Acked-by: Tatyana Nikolova <tatyana.e.nikolova@intel.com>
> ---
> applies cleanly on next-20210701
> 
> Mustafa, Shiraz, please ack.
> Jason, please pick this minor non-urgent patch into your rdma tree.

Applied to for-rc

Thanks,
Jason

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-07-12 18:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-01 10:41 [PATCH] RDMA/irdma: make spdxcheck.py happy Lukas Bulwahn
2021-07-07 16:58 ` Nikolova, Tatyana E
2021-07-12 18:03 ` Jason Gunthorpe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).