Skip to content
This repository was archived by the owner on Aug 27, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion interface/vchiq_arm/vchiq_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ vchiq_bulk_receive_handle(VCHIQ_SERVICE_HANDLE_T handle,
int size,
void *userdata,
VCHIQ_BULK_MODE_T mode,
int (*copy_pagelist)())
int (*copy_pagelist)(char *vcptr, const struct pagelist_struct *pagelist))
{
VCHIQ_SERVICE_T *service = find_service_by_handle(handle);
VCHIQ_QUEUE_BULK_TRANSFER_T args;
Expand Down
2 changes: 1 addition & 1 deletion interface/vmcs_host/vc_vchi_gpuserv.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ struct sync_job_s {

struct gpu_callback_s {
// callback to call when complete (can be NULL)
void (*func)();
void (*func)(void*);
void *cookie;
};

Expand Down