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

Origin commit data
------------------
Branch: master
Commit: 187573afa5
Author: Frankenstone <dampf_acc@online.de>
Date: 2020-02-11 (Tue, 11 Feb 2020)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Frankenstone
2020-02-11 15:10:40 +01:00
committed by vanhofen
parent cd32bff33a
commit 6f60a729c9

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);