summaryrefslogtreecommitdiff
path: root/nuttx/graphics/nxsu/nxfe.h
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/graphics/nxsu/nxfe.h')
-rw-r--r--nuttx/graphics/nxsu/nxfe.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/nuttx/graphics/nxsu/nxfe.h b/nuttx/graphics/nxsu/nxfe.h
index 5ea01b129..f4e4cdfd0 100644
--- a/nuttx/graphics/nxsu/nxfe.h
+++ b/nuttx/graphics/nxsu/nxfe.h
@@ -61,7 +61,10 @@
/* Server state structure ***************************************************/
-/* This the the server 'front-end' state structure */
+/* This the the server 'front-end' state structure. It is really the same
+ * as the back-end state, but we wrap the back-end state so that we can add
+ * things to the structure in the future
+ */
struct nxfe_state_s
{
@@ -71,10 +74,6 @@ struct nxfe_state_s
*/
struct nxbe_state_s be;
-
- /* Event handling callbacks */
-
- FAR const struct nx_callback_s *cb; /* Message handling callbacks */
};
/****************************************************************************