linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] selftests: gpio: update .gitignore
@ 2021-02-24 18:53 Bartosz Golaszewski
  2021-02-24 19:31 ` Kent Gibson
  2021-03-02 14:44 ` Linus Walleij
  0 siblings, 2 replies; 6+ messages in thread
From: Bartosz Golaszewski @ 2021-02-24 18:53 UTC (permalink / raw)
  To: Kent Gibson, Linus Walleij, Shuah Khan, Bamvor Jian Zhang
  Cc: linux-gpio, linux-kernel, Bartosz Golaszewski

From: Bartosz Golaszewski <bgolaszewski@baylibre.com>

The executable that we build for GPIO selftests was renamed to
gpio-mockup-cdev. Let's update .gitignore so that we don't show it
as an untracked file.

Fixes: 8bc395a6a2e2 ("selftests: gpio: rework and simplify test implementation")
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
---
 tools/testing/selftests/gpio/.gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/gpio/.gitignore b/tools/testing/selftests/gpio/.gitignore
index 4c69408f3e84..a4969f7ee020 100644
--- a/tools/testing/selftests/gpio/.gitignore
+++ b/tools/testing/selftests/gpio/.gitignore
@@ -1,2 +1,2 @@
 # SPDX-License-Identifier: GPL-2.0-only
-gpio-mockup-chardev
+gpio-mockup-cdev
-- 
2.29.1


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

* Re: [PATCH] selftests: gpio: update .gitignore
  2021-02-24 18:53 [PATCH] selftests: gpio: update .gitignore Bartosz Golaszewski
@ 2021-02-24 19:31 ` Kent Gibson
  2021-03-02 14:44 ` Linus Walleij
  1 sibling, 0 replies; 6+ messages in thread
From: Kent Gibson @ 2021-02-24 19:31 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Linus Walleij, Shuah Khan, Bamvor Jian Zhang, linux-gpio,
	linux-kernel, Bartosz Golaszewski

On Wed, Feb 24, 2021 at 07:53:16PM +0100, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> 
> The executable that we build for GPIO selftests was renamed to
> gpio-mockup-cdev. Let's update .gitignore so that we don't show it
> as an untracked file.
> 
> Fixes: 8bc395a6a2e2 ("selftests: gpio: rework and simplify test implementation")
> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> ---
>  tools/testing/selftests/gpio/.gitignore | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/gpio/.gitignore b/tools/testing/selftests/gpio/.gitignore
> index 4c69408f3e84..a4969f7ee020 100644
> --- a/tools/testing/selftests/gpio/.gitignore
> +++ b/tools/testing/selftests/gpio/.gitignore
> @@ -1,2 +1,2 @@
>  # SPDX-License-Identifier: GPL-2.0-only
> -gpio-mockup-chardev
> +gpio-mockup-cdev
> -- 

Thanks for picking this one up - I missed it as I don't build the
selftests in the same environment that I edit them in, and overlooked
that there was a .gitignore in play.

Reviewed-by: Kent Gibson <warthog618@gmail.com>

Cheers,
Kent.


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

* Re: [PATCH] selftests: gpio: update .gitignore
  2021-02-24 18:53 [PATCH] selftests: gpio: update .gitignore Bartosz Golaszewski
  2021-02-24 19:31 ` Kent Gibson
@ 2021-03-02 14:44 ` Linus Walleij
  2021-03-02 15:27   ` Shuah Khan
  1 sibling, 1 reply; 6+ messages in thread
From: Linus Walleij @ 2021-03-02 14:44 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Kent Gibson, Shuah Khan, Bamvor Jian Zhang,
	open list:GPIO SUBSYSTEM, linux-kernel@vger.kernel.org,
	Bartosz Golaszewski

On Wed, Feb 24, 2021 at 7:53 PM Bartosz Golaszewski <brgl@bgdev.pl> wrote:

> From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
>
> The executable that we build for GPIO selftests was renamed to
> gpio-mockup-cdev. Let's update .gitignore so that we don't show it
> as an untracked file.
>
> Fixes: 8bc395a6a2e2 ("selftests: gpio: rework and simplify test implementation")
> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

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

* Re: [PATCH] selftests: gpio: update .gitignore
  2021-03-02 14:44 ` Linus Walleij
@ 2021-03-02 15:27   ` Shuah Khan
  2021-03-02 16:07     ` Bartosz Golaszewski
  0 siblings, 1 reply; 6+ messages in thread
From: Shuah Khan @ 2021-03-02 15:27 UTC (permalink / raw)
  To: Linus Walleij, Bartosz Golaszewski
  Cc: Kent Gibson, Shuah Khan, Bamvor Jian Zhang,
	open list:GPIO SUBSYSTEM, linux-kernel@vger.kernel.org,
	Bartosz Golaszewski, Shuah Khan

On 3/2/21 7:44 AM, Linus Walleij wrote:
> On Wed, Feb 24, 2021 at 7:53 PM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
> 
>> From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
>>
>> The executable that we build for GPIO selftests was renamed to
>> gpio-mockup-cdev. Let's update .gitignore so that we don't show it
>> as an untracked file.
>>
>> Fixes: 8bc395a6a2e2 ("selftests: gpio: rework and simplify test implementation")
>> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> 
> Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
> 
> Yours,
> Linus Walleij
> 


Thank you. I will queue this up.

thanks,
-- Shuah

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

* Re: [PATCH] selftests: gpio: update .gitignore
  2021-03-02 15:27   ` Shuah Khan
@ 2021-03-02 16:07     ` Bartosz Golaszewski
  2021-03-02 16:08       ` Shuah Khan
  0 siblings, 1 reply; 6+ messages in thread
From: Bartosz Golaszewski @ 2021-03-02 16:07 UTC (permalink / raw)
  To: Shuah Khan
  Cc: Linus Walleij, Bartosz Golaszewski, Kent Gibson, Shuah Khan,
	Bamvor Jian Zhang, open list:GPIO SUBSYSTEM,
	linux-kernel@vger.kernel.org

On Tue, Mar 2, 2021 at 4:27 PM Shuah Khan <skhan@linuxfoundation.org> wrote:
>
> On 3/2/21 7:44 AM, Linus Walleij wrote:
> > On Wed, Feb 24, 2021 at 7:53 PM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
> >
> >> From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> >>
> >> The executable that we build for GPIO selftests was renamed to
> >> gpio-mockup-cdev. Let's update .gitignore so that we don't show it
> >> as an untracked file.
> >>
> >> Fixes: 8bc395a6a2e2 ("selftests: gpio: rework and simplify test implementation")
> >> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> >
> > Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
> >
> > Yours,
> > Linus Walleij
> >
>
>
> Thank you. I will queue this up.
>
> thanks,
> -- Shuah

Hi Shuah,

Please let me queue this through the GPIO tree as I have some more
development coming up this cycle that will require this. This will be
a new driver + selftests so it will all have to go through the GPIO
tree anyway.

Bart

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

* Re: [PATCH] selftests: gpio: update .gitignore
  2021-03-02 16:07     ` Bartosz Golaszewski
@ 2021-03-02 16:08       ` Shuah Khan
  0 siblings, 0 replies; 6+ messages in thread
From: Shuah Khan @ 2021-03-02 16:08 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Linus Walleij, Bartosz Golaszewski, Kent Gibson, Shuah Khan,
	Bamvor Jian Zhang, open list:GPIO SUBSYSTEM,
	linux-kernel@vger.kernel.org, Shuah Khan

On 3/2/21 9:07 AM, Bartosz Golaszewski wrote:
> On Tue, Mar 2, 2021 at 4:27 PM Shuah Khan <skhan@linuxfoundation.org> wrote:
>>
>> On 3/2/21 7:44 AM, Linus Walleij wrote:
>>> On Wed, Feb 24, 2021 at 7:53 PM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>>>
>>>> From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
>>>>
>>>> The executable that we build for GPIO selftests was renamed to
>>>> gpio-mockup-cdev. Let's update .gitignore so that we don't show it
>>>> as an untracked file.
>>>>
>>>> Fixes: 8bc395a6a2e2 ("selftests: gpio: rework and simplify test implementation")
>>>> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
>>>
>>> Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
>>>
>>> Yours,
>>> Linus Walleij
>>>
>>
>>
>> Thank you. I will queue this up.
>>
>> thanks,
>> -- Shuah
> 
> Hi Shuah,
> 
> Please let me queue this through the GPIO tree as I have some more
> development coming up this cycle that will require this. This will be
> a new driver + selftests so it will all have to go through the GPIO
> tree anyway.
> 
> Bart
> 

Perfect.

Acked-by: Shuah Khan <skhan@linuxfoundation.org>

thanks,
-- Shuah

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

end of thread, other threads:[~2021-03-02 21:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-24 18:53 [PATCH] selftests: gpio: update .gitignore Bartosz Golaszewski
2021-02-24 19:31 ` Kent Gibson
2021-03-02 14:44 ` Linus Walleij
2021-03-02 15:27   ` Shuah Khan
2021-03-02 16:07     ` Bartosz Golaszewski
2021-03-02 16:08       ` Shuah Khan

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).