Message ID | 20201207203816.18269-1-info@metux.net |
---|---|
State | Superseded |
Headers | show |
Series | [v3] drivers: gpio: put virtual gpio device into their own submenu | expand |
On Mon, Dec 7, 2020 at 9:38 PM Enrico Weigelt, metux IT consult <info@metux.net> wrote: > > Since we already have a few virtual GPIO drivers, and more to come, > this category deserves its own submenu. > > changes v2: fixed menu title (replaced "devices" by "drivers") > changes v3: added patch changelog This should be below the --- under all tags because we don't want this in the actual log that goes into git. > > Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> > --- > drivers/gpio/Kconfig | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig > index 5d4de5cd6759..8596f9320971 100644 > --- a/drivers/gpio/Kconfig > +++ b/drivers/gpio/Kconfig > @@ -1590,6 +1590,8 @@ config GPIO_VIPERBOARD > > endmenu > > +menu "Virtual GPIO drivers" > + > config GPIO_AGGREGATOR > tristate "GPIO Aggregator" > help > @@ -1613,4 +1615,6 @@ config GPIO_MOCKUP > tools/testing/selftests/gpio/gpio-mockup.sh. Reference the usage in > it. > > +endmenu > + > endif > -- > 2.11.0 > I fixed up the above and applied the patch, thanks! Bartosz
On 08.12.20 10:15, Bartosz Golaszewski wrote: > On Mon, Dec 7, 2020 at 9:38 PM Enrico Weigelt, metux IT consult > <info@metux.net> wrote: >> >> Since we already have a few virtual GPIO drivers, and more to come, >> this category deserves its own submenu. >> >> changes v2: fixed menu title (replaced "devices" by "drivers") >> changes v3: added patch changelog > > This should be below the --- under all tags because we don't want this > in the actual log that goes into git. Sorry, wasn't aware of that. Does git-am automatically cut it off ? --mtx -- --- Hinweis: unverschlüsselte E-Mails können leicht abgehört und manipuliert werden ! Für eine vertrauliche Kommunikation senden Sie bitte ihren GPG/PGP-Schlüssel zu. --- Enrico Weigelt, metux IT consult Free software and Linux embedded engineering info@metux.net -- +49-151-27565287
On Tue, Dec 8, 2020 at 10:40 AM Enrico Weigelt, metux IT consult <lkml@metux.net> wrote: > > On 08.12.20 10:15, Bartosz Golaszewski wrote: > > On Mon, Dec 7, 2020 at 9:38 PM Enrico Weigelt, metux IT consult > > <info@metux.net> wrote: > >> > >> Since we already have a few virtual GPIO drivers, and more to come, > >> this category deserves its own submenu. > >> > >> changes v2: fixed menu title (replaced "devices" by "drivers") > >> changes v3: added patch changelog > > > > This should be below the --- under all tags because we don't want this > > in the actual log that goes into git. > > > Sorry, wasn't aware of that. Does git-am automatically cut it off ? > Yes, everything between the --- and the actual diff is dropped. Bartosz
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 5d4de5cd6759..8596f9320971 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -1590,6 +1590,8 @@ config GPIO_VIPERBOARD endmenu +menu "Virtual GPIO drivers" + config GPIO_AGGREGATOR tristate "GPIO Aggregator" help @@ -1613,4 +1615,6 @@ config GPIO_MOCKUP tools/testing/selftests/gpio/gpio-mockup.sh. Reference the usage in it. +endmenu + endif
Since we already have a few virtual GPIO drivers, and more to come, this category deserves its own submenu. changes v2: fixed menu title (replaced "devices" by "drivers") changes v3: added patch changelog Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> --- drivers/gpio/Kconfig | 4 ++++ 1 file changed, 4 insertions(+)