From 3d301cb938c158f2e4b23cf7c176e3816c86dfbb Mon Sep 17 00:00:00 2001 From: Shuah Khan Date: Thu, 5 Jan 2017 14:32:36 -0700 Subject: gpio: tools: add .gitignore for generated files Add .gitignore for generated files. Signed-off-by: Shuah Khan [Dropped include dir] Signed-off-by: Linus Walleij --- tools/gpio/.gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tools/gpio/.gitignore (limited to 'tools') diff --git a/tools/gpio/.gitignore b/tools/gpio/.gitignore new file mode 100644 index 000000000000..9e9dd4b681b2 --- /dev/null +++ b/tools/gpio/.gitignore @@ -0,0 +1,4 @@ +gpio-event-mon +gpio-hammer +lsgpio + -- cgit From 38575edcabb4012cb79d02ba9e133cb31aad5137 Mon Sep 17 00:00:00 2001 From: Uwe Kleine-König Date: Wed, 25 Jan 2017 22:01:44 +0100 Subject: gpio-hammer: fix make consumer_label suitable to work on gpio-nails MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There are no gpio-nalils, so fix label accordingly. Signed-off-by: Uwe Kleine-König Signed-off-by: Linus Walleij --- tools/gpio/gpio-hammer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/gpio/gpio-hammer.c b/tools/gpio/gpio-hammer.c index f1eab587dfea..4bcb234c0fca 100644 --- a/tools/gpio/gpio-hammer.c +++ b/tools/gpio/gpio-hammer.c @@ -38,7 +38,7 @@ int hammer_device(const char *device_name, unsigned int *lines, int nlines, memset(&data.values, 0, sizeof(data.values)); ret = gpiotools_request_linehandle(device_name, lines, nlines, GPIOHANDLE_REQUEST_OUTPUT, &data, - "gpio-hammler"); + "gpio-hammer"); if (ret < 0) goto exit_error; else -- cgit