amvdec_ports: fixed the build err with the kernel 32bit.

PD#170885

Change-Id: I2d4ed2e0dc2497190f00e24e96b28223d675c0dc
Signed-off-by: Nanxin Qin <nanxin.qin@amlogic.com>
This commit is contained in:
Nanxin Qin
2018-09-20 14:31:21 +08:00
committed by Dongjin Kim
parent 683ef21d17
commit fdfd1e23b1

View File

@@ -543,10 +543,10 @@ static void vdec_h264_get_vf(struct vdec_h264_inst *inst, struct vdec_fb **out)
/* convert yuv format. */
//swap_uv(fb->base_c.va, fb->base_c.size);
aml_vcodec_debug(inst, "%s() [%d], va: %p, phy: %x, size: %lu",
aml_vcodec_debug(inst, "%s() [%d], va: %p, phy: %x, size: %zu",
__func__, __LINE__, fb->base_y.va,
(unsigned int)virt_to_phys(fb->base_y.va), fb->base_y.size);
aml_vcodec_debug(inst, "%s() [%d], va: %p, phy: %x, size: %lu",
aml_vcodec_debug(inst, "%s() [%d], va: %p, phy: %x, size: %zu",
__func__, __LINE__, fb->base_c.va,
(unsigned int)virt_to_phys(fb->base_c.va), fb->base_c.size);
}