]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Fix RASPBIAN type
authorYour Name <john.d.melton@googlemail.com>
Tue, 8 Dec 2020 12:10:47 +0000 (12:10 +0000)
committerYour Name <john.d.melton@googlemail.com>
Tue, 8 Dec 2020 12:10:47 +0000 (12:10 +0000)
Makefile
gpio.c

index 76f947e624012dd328bfa80367d33f7f07160604..1e7b338254ed134ba11195ef5a0d9526afb4c425 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ GIT_VERSION := $(shell git describe --abbrev=0 --tags)
 
 ISSUE := $(shell cat /etc/issue.net)
 ifneq ($(filter %Raspbian,$(ISSUE)),)
-       OSFLAG=-D RASPIAN
+       OSFLAG=-D RASPBAN
 endif
 
 # uncomment the following line to force 480x320 screen
diff --git a/gpio.c b/gpio.c
index af29ca0c93d061885b96b21ebe236e654751d695..f0930de16296d3a8f38d8b078da286835c8bac69 100644 (file)
--- a/gpio.c
+++ b/gpio.c
@@ -921,7 +921,7 @@ static int setup_line(struct gpiod_chip *chip, int offset, gboolean pullup) {
 
   config.consumer=consumer;
   config.request_type=GPIOD_LINE_REQUEST_DIRECTION_INPUT | GPIOD_LINE_REQUEST_EVENT_BOTH_EDGES;
-#ifdef RASPIAN
+#ifdef RASPBIAN
   config.flags=pullup?GPIOD_LINE_REQUEST_FLAG_ACTIVE_LOW:0;
 #else
   config.flags=pullup?GPIOD_LINE_REQUEST_FLAG_BIAS_PULL_UP:GPIOD_LINE_REQUEST_FLAG_BIAS_PULL_DOWN;