Lines Matching defs:std
56 v4l2_std_id *std)
70 if (!std)
75 *std = V4L2_STD_UNKNOWN;
81 *std = V4L2_STD_NTSC;
84 *std = V4L2_STD_NTSC_443;
87 *std = V4L2_STD_PAL_M;
90 *std = V4L2_STD_PAL_60;
93 *std = V4L2_STD_PAL;
96 *std = V4L2_STD_SECAM;
99 *std = V4L2_STD_PAL_Nc | V4L2_STD_PAL_N;
102 *std = V4L2_STD_SECAM;
105 *std = V4L2_STD_UNKNOWN;
128 static int adv748x_afe_std(v4l2_std_id std)
130 if (std == V4L2_STD_PAL_60)
132 if (std == V4L2_STD_NTSC_443)
134 if (std == V4L2_STD_PAL_N)
136 if (std == V4L2_STD_PAL_M)
138 if (std == V4L2_STD_PAL_Nc)
140 if (std & V4L2_STD_NTSC)
142 if (std & V4L2_STD_PAL)
144 if (std & V4L2_STD_SECAM)
193 static int adv748x_afe_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
197 int afe_std = adv748x_afe_std(std);
205 afe->curr_norm = std;
212 static int adv748x_afe_querystd(struct v4l2_subdev *sd, v4l2_std_id *std)
233 ret = adv748x_afe_status(afe, NULL, std);