From 5125fc3a81726aa8c9010b877c00d5bdfd45d3f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beat=20K=C3=BCng?= Date: Mon, 6 Jun 2016 15:39:17 +0200 Subject: [PATCH] uORBDevices::SubscriberData: remove unused member poll_priv --- src/modules/uORB/uORBDevices_nuttx.hpp | 1 - src/modules/uORB/uORBDevices_posix.hpp | 1 - 2 files changed, 2 deletions(-) diff --git a/src/modules/uORB/uORBDevices_nuttx.hpp b/src/modules/uORB/uORBDevices_nuttx.hpp index 2015bff986..e4eedd6003 100644 --- a/src/modules/uORB/uORBDevices_nuttx.hpp +++ b/src/modules/uORB/uORBDevices_nuttx.hpp @@ -187,7 +187,6 @@ private: unsigned generation; /**< last generation the subscriber has seen */ unsigned update_interval; /**< if nonzero minimum interval between updates */ struct hrt_call update_call; /**< deferred wakeup call if update_period is nonzero */ - void *poll_priv; /**< saved copy of fds->f_priv while poll is active */ bool update_reported; /**< true if we have reported the update via poll/check */ int priority; /**< priority of publisher */ }; diff --git a/src/modules/uORB/uORBDevices_posix.hpp b/src/modules/uORB/uORBDevices_posix.hpp index 35882accaa..25f241ff58 100644 --- a/src/modules/uORB/uORBDevices_posix.hpp +++ b/src/modules/uORB/uORBDevices_posix.hpp @@ -125,7 +125,6 @@ private: unsigned update_interval; /**< if nonzero minimum interval between updates */ uint64_t last_update; /**< time at which the last update was provided, used when update_interval is nonzero */ struct hrt_call update_call; /**< deferred wakeup call if update_period is nonzero */ - void *poll_priv; /**< saved copy of fds->f_priv while poll is active */ bool update_reported; /**< true if we have reported the update via poll/check */ int priority; /**< priority of publisher */ };