From 24455eedb9e8939f8a28ca0101a6f2d171e1b2f9 Mon Sep 17 00:00:00 2001 From: Kristofer Jonsson Date: Tue, 8 Feb 2022 13:33:22 +0100 Subject: Fixing compilation warning Change-Id: I155d79a87f9a9a0dc26c145415cc7cdd19533639 --- src/ethosu_driver.c | 2 +- zephyr/module.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ethosu_driver.c b/src/ethosu_driver.c index 3383ef3..866b94c 100644 --- a/src/ethosu_driver.c +++ b/src/ethosu_driver.c @@ -485,7 +485,7 @@ int ethosu_invoke_v3(struct ethosu_driver *drv, void *user_arg) { const struct cop_data_s *data_ptr = custom_data_ptr; - const struct cop_data_s *data_end = custom_data_ptr + custom_data_size; + const struct cop_data_s *data_end = (struct cop_data_s *)((ptrdiff_t)custom_data_ptr + custom_data_size); int return_code = 0; // First word in custom_data_ptr should contain "Custom Operator Payload 1" diff --git a/zephyr/module.yml b/zephyr/module.yml index 68fa9a5..08831dd 100644 --- a/zephyr/module.yml +++ b/zephyr/module.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Arm Limited. All rights reserved. +# Copyright (c) 2021-2022 Arm Limited. All rights reserved. # SPDX-License-Identifier: Apache-2.0 name: hal_ethos_u build: -- cgit v1.2.1