[PATCH 7/9] Fix Kconfig

Dave Penkler posted 9 patches 3 weeks, 2 days ago
[PATCH 7/9] Fix Kconfig
Posted by Dave Penkler 3 weeks, 2 days ago
   The NI_PCI_ISA driver also supports PCI and PCMCIA
   Correct spelling error COMPIlE_TEST

Fixes: 2c9f5d8c6ece91ecd33350749230494d224550f1
Signed-off-by: Dave Penkler <dpenkler@gmail.com>
---
 drivers/staging/gpib/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/gpib/Kconfig b/drivers/staging/gpib/Kconfig
index 0ea9a276c389..95308d15a555 100644
--- a/drivers/staging/gpib/Kconfig
+++ b/drivers/staging/gpib/Kconfig
@@ -61,7 +61,7 @@ config GPIB_CEC_PCI
 
 config GPIB_NI_PCI_ISA
 	tristate "NI PCI/ISA compatible boards"
-	depends on ISA_BUS
+	depends on ISA_BUS || PCI || PCMCIA
 	select GPIB_COMMON
 	select GPIB_NEC7210
 	help
@@ -138,7 +138,7 @@ config GPIB_FMH
 
 config GPIB_GPIO
        tristate "RPi GPIO bitbang"
-	depends on ARCH_BCM2835 || COMPIlE_TEST
+	depends on ARCH_BCM2835 || COMPILE_TEST
        select GPIB_COMMON
        help
          GPIB bitbang driver Raspberry Pi GPIO adapters
-- 
2.46.2
Re: [PATCH 7/9] Fix Kconfig
Posted by Dan Carpenter 3 weeks, 2 days ago
On Fri, Nov 01, 2024 at 06:47:03PM +0100, Dave Penkler wrote:
>    The NI_PCI_ISA driver also supports PCI and PCMCIA
>    Correct spelling error COMPIlE_TEST
> 
> Fixes: 2c9f5d8c6ece91ecd33350749230494d224550f1

The Fixes tag format looks like this:

Fixes: 2c9f5d8c6ece ("staging: gpib: add bus specific Kconfig dependencies")

regards,
dan carpenter
Re: [PATCH 7/9] Fix Kconfig
Posted by Dan Carpenter 3 weeks, 2 days ago
On Fri, Nov 01, 2024 at 10:51:10PM +0300, Dan Carpenter wrote:
> On Fri, Nov 01, 2024 at 06:47:03PM +0100, Dave Penkler wrote:
> >    The NI_PCI_ISA driver also supports PCI and PCMCIA
> >    Correct spelling error COMPIlE_TEST
> > 
> > Fixes: 2c9f5d8c6ece91ecd33350749230494d224550f1
> 
> The Fixes tag format looks like this:
> 
> Fixes: 2c9f5d8c6ece ("staging: gpib: add bus specific Kconfig dependencies")
> 

I use a little script to generate Fixes tags.  You have to have "abbrev = 12"
set in your .gitconfig as well, I guess.

#!/bin/bash

git log -1 --format='Fixes: %h ("%s")' $*

regards,
dan carpenter