msm: dvb: demux: compilation error fix for 32 bit version
Compilation error fix for 32 bit version mpq demux common plugin Change-Id: Id2472097e115f1c8d09886c1a1ceb01c4f5c5f4b CRs-Fixed: 1090466 Signed-off-by: Udaya Mallavarapu <udaym@codeaurora.org>
This commit is contained in:
parent
a80e267a8c
commit
97b96558bd
1 changed files with 2 additions and 2 deletions
|
@ -928,7 +928,7 @@ static int mpq_map_buffer_to_kernel(
|
|||
MPQ_DVB_DBG_PRINT("%s: secured buffer\n", __func__);
|
||||
*kernel_mem = NULL;
|
||||
} else {
|
||||
unsigned long tmp;
|
||||
size_t tmp;
|
||||
*kernel_mem = ion_map_kernel(client, ion_handle);
|
||||
if (IS_ERR_OR_NULL(*kernel_mem)) {
|
||||
ret = PTR_ERR(*kernel_mem);
|
||||
|
@ -940,7 +940,7 @@ static int mpq_map_buffer_to_kernel(
|
|||
}
|
||||
ion_handle_get_size(client, ion_handle, &tmp);
|
||||
MPQ_DVB_DBG_PRINT(
|
||||
"%s: mapped to address 0x%p, size=%lu\n",
|
||||
"%s: mapped to address 0x%p, size=%zu\n",
|
||||
__func__, *kernel_mem, tmp);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue