[media] rcar_jpu: Fix namespace for two __be16 vars
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 1 Oct 2015 22:10:55 +0000 (19:10 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 1 Oct 2015 22:10:55 +0000 (19:10 -0300)
Fixes those sparse warnings:
drivers/media/platform/rcar_jpu.c:1150:51: warning: incorrect type in assignment (different base types)
drivers/media/platform/rcar_jpu.c:1150:51:    expected unsigned short [unsigned] [short] [usertype] <noident>
drivers/media/platform/rcar_jpu.c:1150:51:    got restricted __be16 [usertype] <noident>
drivers/media/platform/rcar_jpu.c:1152:50: warning: incorrect type in assignment (different base types)
drivers/media/platform/rcar_jpu.c:1152:50:    expected unsigned short [unsigned] [short] [usertype] <noident>
drivers/media/platform/rcar_jpu.c:1152:50:    got restricted __be16 [usertype] <noident>

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/rcar_jpu.c

index 7533b9e16649503274bd49340d380cf412c132f7..c80395df67bcfa372106400adf2964fef4ceeb11 100644 (file)
@@ -1147,9 +1147,9 @@ static void jpu_buf_finish(struct vb2_buffer *vb)
        buffer = vb2_plane_vaddr(vb, 0);
 
        memcpy(buffer, jpeg_hdrs[jpu_buf->compr_quality], JPU_JPEG_HDR_SIZE);
-       *(u16 *)(buffer + JPU_JPEG_HEIGHT_OFFSET) =
+       *(__be16 *)(buffer + JPU_JPEG_HEIGHT_OFFSET) =
                                        cpu_to_be16(q_data->format.height);
-       *(u16 *)(buffer + JPU_JPEG_WIDTH_OFFSET) =
+       *(__be16 *)(buffer + JPU_JPEG_WIDTH_OFFSET) =
                                        cpu_to_be16(q_data->format.width);
        *(buffer + JPU_JPEG_SUBS_OFFSET) = q_data->fmtinfo->subsampling;
 }