···348348/* Format control 2 */349349#define AU8522_TVDEC_FORMAT_CTRL2_REG062H_STD_AUTODETECT 0x00350350#define AU8522_TVDEC_FORMAT_CTRL2_REG062H_STD_NTSC 0x01351351+#define AU8522_TVDEC_FORMAT_CTRL2_REG062H_STD_PAL_M 0x02351352352353353354#define AU8522_INPUT_CONTROL_REG081H_ATSC 0xC4
+6-4
drivers/media/usb/au0828/au0828-video.c
···1364136413651365 i2c_gate_ctrl(dev, 1);1366136613671367- /* FIXME: when we support something other than NTSC, we are going to13681368- have to make the au0828 bridge adjust the size of its capture13691369- buffer, which is currently hardcoded at 720x480 */13671367+ /*13681368+ * FIXME: when we support something other than 60Hz standards,13691369+ * we are going to have to make the au0828 bridge adjust the size13701370+ * of its capture buffer, which is currently hardcoded at 720x48013711371+ */1370137213711373 v4l2_device_call_all(&dev->v4l2_dev, 0, video, s_std, norm);13721374···19171915 .fops = &au0828_v4l_fops,19181916 .release = video_device_release,19191917 .ioctl_ops = &video_ioctl_ops,19201920- .tvnorms = V4L2_STD_NTSC_M,19181918+ .tvnorms = V4L2_STD_NTSC_M | V4L2_STD_PAL_M,19211919};1922192019231921/**************************************************************************/