Lines Matching refs:sd_fmt
572 struct v4l2_subdev_format sd_fmt; in hdmi_enable() local
573 memset(&sd_fmt, 0, sizeof(sd_fmt)); in hdmi_enable()
574 sd_fmt.pad = MIXER_G0_SUBDEV_PAD_SINK; in hdmi_enable()
575 sd_fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE; in hdmi_enable()
576 sd_fmt.format.width = dev->hdmi_w; in hdmi_enable()
577 sd_fmt.format.height = dev->hdmi_h; in hdmi_enable()
578 sd_fmt.format.code = V4L2_MBUS_FMT_XRGB8888_4X8_LE; in hdmi_enable()
579 if (exynos_subdev_s_fmt(dev->hdmi_mixer0, &sd_fmt) < 0) { in hdmi_enable()
580 ALOGE("%s: s_fmt failed pad=%d", __func__, sd_fmt.pad); in hdmi_enable()
595 memset(&sd_fmt, 0, sizeof(sd_fmt)); in hdmi_enable()
596 sd_fmt.pad = MIXER_G0_SUBDEV_PAD_SOURCE; in hdmi_enable()
597 sd_fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE; in hdmi_enable()
598 sd_fmt.format.width = dev->hdmi_w; in hdmi_enable()
599 sd_fmt.format.height = dev->hdmi_h; in hdmi_enable()
600 sd_fmt.format.code = V4L2_MBUS_FMT_XRGB8888_4X8_LE; in hdmi_enable()
601 if (exynos_subdev_s_fmt(dev->hdmi_mixer0, &sd_fmt) < 0) { in hdmi_enable()
602 ALOGE("%s: s_fmt failed pad=%d", __func__, sd_fmt.pad); in hdmi_enable()