summaryrefslogtreecommitdiff
path: root/gxp-client.h
diff options
context:
space:
mode:
Diffstat (limited to 'gxp-client.h')
-rw-r--r--gxp-client.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/gxp-client.h b/gxp-client.h
index 4f6fe8e..3b0719b 100644
--- a/gxp-client.h
+++ b/gxp-client.h
@@ -7,11 +7,11 @@
#ifndef __GXP_CLIENT_H__
#define __GXP_CLIENT_H__
-#include <linux/eventfd.h>
#include <linux/rwsem.h>
#include <linux/types.h>
#include "gxp-internal.h"
+#include "gxp-eventfd.h"
#include "gxp-vd.h"
/* Holds state belonging to a client */
@@ -37,7 +37,7 @@ struct gxp_client {
bool tpu_mbx_allocated;
struct gxp_tpu_mbx_desc mbx_desc;
- struct eventfd_ctx *mb_eventfds[GXP_NUM_CORES];
+ struct gxp_eventfd *mb_eventfds[GXP_NUM_CORES];
};
/*
@@ -51,7 +51,4 @@ struct gxp_client *gxp_client_create(struct gxp_dev *gxp);
*/
void gxp_client_destroy(struct gxp_client *client);
-void gxp_client_signal_mailbox_eventfd(struct gxp_client *client,
- uint phys_core);
-
#endif /* __GXP_CLIENT_H__ */