Revert "ca_ci.cpp: fix -fpermissive error on aarch64"

This commit is contained in:
Frankenstone
2020-02-11 15:10:40 +01:00
committed by Thilo Graf
parent 1b4c5dc1f8
commit d0c12909c9

View File

@@ -56,7 +56,7 @@ static cCA* pcCAInstance = NULL;
/* nur diese Message wird vom CI aus neutrinoMessages.h benutzt */
/* für den CamMsgHandler, darum hier einfach mal definiert */
/* die Feinheiten werden ja in CA_MESSAGE verpackt */
uintptr_t EVT_CA_MESSAGE = 0x80000000 + 60;
uint32_t EVT_CA_MESSAGE = 0x80000000 + 60;
static cs_messenger cam_messenger = NULL;
@@ -479,7 +479,7 @@ bool cCA::SendMessage(const CA_MESSAGE *msg)
{
hal_debug("%s\n", __func__);
if(cam_messenger)
cam_messenger(EVT_CA_MESSAGE, (uintptr_t) msg);
cam_messenger(EVT_CA_MESSAGE, (uint32_t) msg);
#if z_debug
printf("*******Message\n");
printf("msg: %p\n", msg);