diff --git a/drivers/media/i2c/nvp6188.c b/drivers/media/i2c/nvp6188.c index aa55c494089c..13f9a0e92248 100644 --- a/drivers/media/i2c/nvp6188.c +++ b/drivers/media/i2c/nvp6188.c @@ -1123,17 +1123,17 @@ static void nvp6188_get_vc_fmt_inf(struct nvp6188 *nvp6188, inf->height[ch] = 720; inf->fps[ch] = 30; break; - case NVP_RESO_1080P_PAL_VALUE: - inf->width[ch] = 1920; - inf->height[ch] = 1080; - inf->fps[ch] = 25; - break; case NVP_RESO_1080P_NSTC_VALUE: - default: inf->width[ch] = 1920; inf->height[ch] = 1080; inf->fps[ch] = 30; break; + case NVP_RESO_1080P_PAL_VALUE: + default: + inf->width[ch] = 1920; + inf->height[ch] = 1080; + inf->fps[ch] = 25; + break; } } }