public inbox for linux-spdx@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] mmc: sdhci-pic32: allow driver to be compiled with COMPILE_TEST
@ 2026-02-22 23:39 Brian Masney
  2026-02-22 23:39 ` [PATCH 1/2] mmc: sdhci-pic32: add SPDX license identifier Brian Masney
  2026-02-23 14:13 ` [PATCH 0/2] mmc: sdhci-pic32: allow driver to be compiled with COMPILE_TEST Ulf Hansson
  0 siblings, 2 replies; 4+ messages in thread
From: Brian Masney @ 2026-02-22 23:39 UTC (permalink / raw)
  To: Adrian Hunter, Ulf Hansson
  Cc: linux-mmc, linux-kernel, Brian Masney, linux-spdx

While migrating a pic32 clk driver off of a legacy API, I mistakenly
broke one of the drivers, and the issue could have been caught with a
simple compile test. Now that the dependent patches have been merged
into Linus's tree via the MIPS tree, we can now enable COMPILE_TEST
for pic32 driver in this subsystem.

While changes are being made to this driver, let's also fix a single
outstanding checkpatch.pl error with this driver.

Signed-off-by: Brian Masney <bmasney@redhat.com>
---
Brian Masney (2):
      mmc: sdhci-pic32: add SPDX license identifier
      mmc: sdhci-pic32: allow driver to be compiled with COMPILE_TEST

 drivers/mmc/host/Kconfig       | 2 +-
 drivers/mmc/host/sdhci-pic32.c | 5 +----
 2 files changed, 2 insertions(+), 5 deletions(-)
---
base-commit: 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f
change-id: 20260222-mmc-pic32-137b3eae8e66

Best regards,
-- 
Brian Masney <bmasney@redhat.com>


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

* [PATCH 1/2] mmc: sdhci-pic32: add SPDX license identifier
  2026-02-22 23:39 [PATCH 0/2] mmc: sdhci-pic32: allow driver to be compiled with COMPILE_TEST Brian Masney
@ 2026-02-22 23:39 ` Brian Masney
  2026-02-23  9:38   ` Adrian Hunter
  2026-02-23 14:13 ` [PATCH 0/2] mmc: sdhci-pic32: allow driver to be compiled with COMPILE_TEST Ulf Hansson
  1 sibling, 1 reply; 4+ messages in thread
From: Brian Masney @ 2026-02-22 23:39 UTC (permalink / raw)
  To: Adrian Hunter, Ulf Hansson
  Cc: linux-mmc, linux-kernel, Brian Masney, linux-spdx

Add the missing SPDX license identifier to the top of the file, and drop
the boiler plate license text.

Signed-off-by: Brian Masney <bmasney@redhat.com>
Cc: linux-spdx@vger.kernel.org
---
 drivers/mmc/host/sdhci-pic32.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/mmc/host/sdhci-pic32.c b/drivers/mmc/host/sdhci-pic32.c
index 2cc632e91fe454bf29c1da22e45135d5d0267f54..6899cf6c65e7df2461c9534b51b8edfd0d6bf7d9 100644
--- a/drivers/mmc/host/sdhci-pic32.c
+++ b/drivers/mmc/host/sdhci-pic32.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * Support of SDHCI platform devices for Microchip PIC32.
  *
@@ -5,10 +6,6 @@
  * Andrei Pistirica, Paul Thacker
  *
  * Inspired by sdhci-pltfm.c
- *
- * This file is licensed under the terms of the GNU General Public
- * License version 2. This program is licensed "as is" without any
- * warranty of any kind, whether express or implied.
  */
 
 #include <linux/clk.h>

-- 
2.53.0


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

* Re: [PATCH 1/2] mmc: sdhci-pic32: add SPDX license identifier
  2026-02-22 23:39 ` [PATCH 1/2] mmc: sdhci-pic32: add SPDX license identifier Brian Masney
@ 2026-02-23  9:38   ` Adrian Hunter
  0 siblings, 0 replies; 4+ messages in thread
From: Adrian Hunter @ 2026-02-23  9:38 UTC (permalink / raw)
  To: Brian Masney, Ulf Hansson; +Cc: linux-mmc, linux-kernel, linux-spdx

On 23/02/2026 01:39, Brian Masney wrote:
> Add the missing SPDX license identifier to the top of the file, and drop
> the boiler plate license text.
> 
> Signed-off-by: Brian Masney <bmasney@redhat.com>
> Cc: linux-spdx@vger.kernel.org

Acked-by: Adrian Hunter <adrian.hunter@intel.com>

> ---
>  drivers/mmc/host/sdhci-pic32.c | 5 +----
>  1 file changed, 1 insertion(+), 4 deletions(-)
> 
> diff --git a/drivers/mmc/host/sdhci-pic32.c b/drivers/mmc/host/sdhci-pic32.c
> index 2cc632e91fe454bf29c1da22e45135d5d0267f54..6899cf6c65e7df2461c9534b51b8edfd0d6bf7d9 100644
> --- a/drivers/mmc/host/sdhci-pic32.c
> +++ b/drivers/mmc/host/sdhci-pic32.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0-only
>  /*
>   * Support of SDHCI platform devices for Microchip PIC32.
>   *
> @@ -5,10 +6,6 @@
>   * Andrei Pistirica, Paul Thacker
>   *
>   * Inspired by sdhci-pltfm.c
> - *
> - * This file is licensed under the terms of the GNU General Public
> - * License version 2. This program is licensed "as is" without any
> - * warranty of any kind, whether express or implied.
>   */
>  
>  #include <linux/clk.h>
> 


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

* Re: [PATCH 0/2] mmc: sdhci-pic32: allow driver to be compiled with COMPILE_TEST
  2026-02-22 23:39 [PATCH 0/2] mmc: sdhci-pic32: allow driver to be compiled with COMPILE_TEST Brian Masney
  2026-02-22 23:39 ` [PATCH 1/2] mmc: sdhci-pic32: add SPDX license identifier Brian Masney
@ 2026-02-23 14:13 ` Ulf Hansson
  1 sibling, 0 replies; 4+ messages in thread
From: Ulf Hansson @ 2026-02-23 14:13 UTC (permalink / raw)
  To: Brian Masney; +Cc: Adrian Hunter, linux-mmc, linux-kernel, linux-spdx

On Mon, 23 Feb 2026 at 00:39, Brian Masney <bmasney@redhat.com> wrote:
>
> While migrating a pic32 clk driver off of a legacy API, I mistakenly
> broke one of the drivers, and the issue could have been caught with a
> simple compile test. Now that the dependent patches have been merged
> into Linus's tree via the MIPS tree, we can now enable COMPILE_TEST
> for pic32 driver in this subsystem.
>
> While changes are being made to this driver, let's also fix a single
> outstanding checkpatch.pl error with this driver.
>
> Signed-off-by: Brian Masney <bmasney@redhat.com>
> ---
> Brian Masney (2):
>       mmc: sdhci-pic32: add SPDX license identifier
>       mmc: sdhci-pic32: allow driver to be compiled with COMPILE_TEST
>
>  drivers/mmc/host/Kconfig       | 2 +-
>  drivers/mmc/host/sdhci-pic32.c | 5 +----
>  2 files changed, 2 insertions(+), 5 deletions(-)
> ---
> base-commit: 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f
> change-id: 20260222-mmc-pic32-137b3eae8e66
>
> Best regards,
> --
> Brian Masney <bmasney@redhat.com>

The series applied for next, thanks!

Kind regards
Uffe

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

end of thread, other threads:[~2026-02-23 14:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-22 23:39 [PATCH 0/2] mmc: sdhci-pic32: allow driver to be compiled with COMPILE_TEST Brian Masney
2026-02-22 23:39 ` [PATCH 1/2] mmc: sdhci-pic32: add SPDX license identifier Brian Masney
2026-02-23  9:38   ` Adrian Hunter
2026-02-23 14:13 ` [PATCH 0/2] mmc: sdhci-pic32: allow driver to be compiled with COMPILE_TEST Ulf Hansson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox