staging: vc04_services: fix gcc-13 build warning
Not upstream as newer kernels fixed this properly. Fix up a mismatched function prototype warning in the vc04_services driver that gcc-13 shows. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -2315,7 +2315,7 @@ vchiq_arm_init_state(struct vchiq_state *state,
|
|||||||
return VCHIQ_SUCCESS;
|
return VCHIQ_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum vchiq_status
|
int
|
||||||
vchiq_use_internal(struct vchiq_state *state, struct vchiq_service *service,
|
vchiq_use_internal(struct vchiq_state *state, struct vchiq_service *service,
|
||||||
enum USE_TYPE_E use_type)
|
enum USE_TYPE_E use_type)
|
||||||
{
|
{
|
||||||
@@ -2375,7 +2375,7 @@ out:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum vchiq_status
|
int
|
||||||
vchiq_release_internal(struct vchiq_state *state, struct vchiq_service *service)
|
vchiq_release_internal(struct vchiq_state *state, struct vchiq_service *service)
|
||||||
{
|
{
|
||||||
struct vchiq_arm_state *arm_state = vchiq_platform_get_arm_state(state);
|
struct vchiq_arm_state *arm_state = vchiq_platform_get_arm_state(state);
|
||||||
|
|||||||
Reference in New Issue
Block a user