aboutsummaryrefslogtreecommitdiff
path: root/kernel/ethosu_network_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/ethosu_network_info.h')
-rw-r--r--kernel/ethosu_network_info.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/kernel/ethosu_network_info.h b/kernel/ethosu_network_info.h
index a809d35..8c2e659 100644
--- a/kernel/ethosu_network_info.h
+++ b/kernel/ethosu_network_info.h
@@ -35,12 +35,11 @@
****************************************************************************/
struct ethosu_core_msg_network_info_rsp;
-struct ethosu_device;
struct ethosu_network;
struct ethosu_uapi_network_info;
struct ethosu_network_info {
- struct ethosu_device *edev;
+ struct device *dev;
struct ethosu_network *net;
struct ethosu_uapi_network_info *uapi;
struct completion done;
@@ -59,13 +58,15 @@ struct ethosu_network_info {
*
* Return: 0 on success, .
*/
-int ethosu_network_info_request(struct ethosu_network *net,
+int ethosu_network_info_request(struct device *dev,
+ struct ethosu_mailbox *mailbox,
+ struct ethosu_network *net,
struct ethosu_uapi_network_info *uapi);
/**
* ethosu_network_info_rsp() - Handle network info response.
*/
-void ethosu_network_info_rsp(struct ethosu_device *edev,
+void ethosu_network_info_rsp(struct ethosu_mailbox *mailbox,
int msg_id,
struct ethosu_core_msg_network_info_rsp *rsp);