fixed build warnings

This commit is contained in:
Blaise Tine
2021-10-17 12:01:31 -07:00
parent 5d90439a51
commit af6d9e7a8b
16 changed files with 69 additions and 69 deletions

View File

@@ -3,7 +3,7 @@
#define KERNEL_ARG_DEV_MEM_ADDR 0x7ffff000
struct kernel_arg_t {
typedef struct {
uint32_t num_tasks;
uint8_t format;
uint8_t filter;
@@ -20,6 +20,6 @@ struct kernel_arg_t {
uint8_t dst_stride;
uint32_t dst_pitch;
uint32_t dst_ptr;
};
} kernel_arg_t;
#endif