[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gpsd-dev] [PATCH] driver_greis: fix build with reconfigure disabled
From: |
Baruch Siach |
Subject: |
[gpsd-dev] [PATCH] driver_greis: fix build with reconfigure disabled |
Date: |
Tue, 9 Oct 2018 15:26:29 +0300 |
Unhide the definition of greis_parse_input and greis_event_hook since
they are used unconditionally.
Fixes the following build failure:
driver_greis.c:969:25: error: 'greis_parse_input' undeclared here (not in a
function); did you mean 'generic_parse_input'?
.parse_packet = greis_parse_input,
^~~~~~~~~~~~~~~~~
generic_parse_input
driver_greis.c:973:25: error: 'greis_event_hook' undeclared here (not in a
function)
.event_hook = greis_event_hook,
^~~~~~~~~~~~~~~~
Cc: Gregory Fong <address@hidden>
Signed-off-by: Baruch Siach <address@hidden>
---
driver_greis.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/driver_greis.c b/driver_greis.c
index 9eb148fc76cd..222bd9daf020 100644
--- a/driver_greis.c
+++ b/driver_greis.c
@@ -797,7 +797,6 @@ static ssize_t greis_control_send(struct gps_device_t
*session,
}
#endif /* CONTROLSEND_ENABLE */
-#ifdef RECONFIGURE_ENABLE
static void greis_event_hook(struct gps_device_t *session, event_t event)
{
if (session->context->readonly)
@@ -870,6 +869,7 @@ static gps_mask_t greis_parse_input(struct gps_device_t
*session)
return 0;
}
+#ifdef RECONFIGURE_ENABLE
/**
* Set port operating mode, speed, parity, stopbits etc. here.
* Note: parity is passed as 'N'/'E'/'O', but you should program
--
2.19.1
- [gpsd-dev] [PATCH] driver_greis: fix build with reconfigure disabled,
Baruch Siach <=