{ TVP7002_EOR, 0xff, TVP7002_RESERVED }
 };
 
-/* Preset definition for handling device operation */
-struct tvp7002_preset_definition {
+/* Timings definition for handling device operation */
+struct tvp7002_timings_definition {
        u32 preset;
        struct v4l2_dv_timings timings;
        const struct i2c_reg_value *p_settings;
        u16 cpl_max;
 };
 
-/* Struct list for digital video presets */
-static const struct tvp7002_preset_definition tvp7002_presets[] = {
+/* Struct list for digital video timings */
+static const struct tvp7002_timings_definition tvp7002_timings[] = {
        {
                V4L2_DV_720P60,
                V4L2_DV_BT_CEA_1280X720P60,
        }
 };
 
-#define NUM_PRESETS    ARRAY_SIZE(tvp7002_presets)
+#define NUM_TIMINGS ARRAY_SIZE(tvp7002_timings)
 
 /* Device definition */
 struct tvp7002 {
        int ver;
        int streaming;
 
-       const struct tvp7002_preset_definition *current_preset;
+       const struct tvp7002_timings_definition *current_timings;
 };
 
 /*
        u32 preset;
        int i;
 
-       for (i = 0; i < NUM_PRESETS; i++) {
-               preset = tvp7002_presets[i].preset;
+       for (i = 0; i < NUM_TIMINGS; i++) {
+               preset = tvp7002_timings[i].preset;
                if (preset == dv_preset->preset) {
-                       device->current_preset = &tvp7002_presets[i];
-                       return tvp7002_write_inittab(sd, tvp7002_presets[i].p_settings);
+                       device->current_timings = &tvp7002_timings[i];
+                       return tvp7002_write_inittab(sd, tvp7002_timings[i].p_settings);
                }
        }
 
 
        if (dv_timings->type != V4L2_DV_BT_656_1120)
                return -EINVAL;
-       for (i = 0; i < NUM_PRESETS; i++) {
-               const struct v4l2_bt_timings *t = &tvp7002_presets[i].timings.bt;
+       for (i = 0; i < NUM_TIMINGS; i++) {
+               const struct v4l2_bt_timings *t = &tvp7002_timings[i].timings.bt;
 
                if (!memcmp(bt, t, &bt->standards - &bt->width)) {
-                       device->current_preset = &tvp7002_presets[i];
-                       return tvp7002_write_inittab(sd, tvp7002_presets[i].p_settings);
+                       device->current_timings = &tvp7002_timings[i];
+                       return tvp7002_write_inittab(sd, tvp7002_timings[i].p_settings);
                }
        }
        return -EINVAL;
 {
        struct tvp7002 *device = to_tvp7002(sd);
 
-       *dv_timings = device->current_preset->timings;
+       *dv_timings = device->current_timings->timings;
        return 0;
 }
 
        int error;
 
        /* Calculate height and width based on current standard */
-       error = v4l_fill_dv_preset_info(device->current_preset->preset, &e_preset);
+       error = v4l_fill_dv_preset_info(device->current_timings->preset, &e_preset);
        if (error)
                return error;
 
        f->width = e_preset.width;
        f->height = e_preset.height;
        f->code = V4L2_MBUS_FMT_YUYV10_1X20;
-       f->field = device->current_preset->scanmode;
-       f->colorspace = device->current_preset->color_space;
+       f->field = device->current_timings->scanmode;
+       f->colorspace = device->current_timings->color_space;
 
        v4l2_dbg(1, debug, sd, "MBUS_FMT: Width - %d, Height - %d",
                        f->width, f->height);
 }
 
 /*
- * tvp7002_query_dv_preset() - query DV preset
+ * tvp7002_query_dv() - query DV timings
  * @sd: pointer to standard V4L2 sub-device structure
- * @qpreset: standard V4L2 v4l2_dv_preset structure
+ * @index: index into the tvp7002_timings array
  *
- * Returns the current DV preset by TVP7002. If no active input is
+ * Returns the current DV timings detected by TVP7002. If no active input is
  * detected, returns -EINVAL
  */
 static int tvp7002_query_dv(struct v4l2_subdev *sd, int *index)
 {
-       const struct tvp7002_preset_definition *presets = tvp7002_presets;
+       const struct tvp7002_timings_definition *timings = tvp7002_timings;
        u8 progressive;
        u32 lpfr;
        u32 cpln;
        u8 cpl_msb;
 
        /* Return invalid index if no active input is detected */
-       *index = NUM_PRESETS;
+       *index = NUM_TIMINGS;
 
        /* Read standards from device registers */
        tvp7002_read_err(sd, TVP7002_L_FRAME_STAT_LSBS, &lpf_lsb, &error);
        progressive = (lpf_msb & TVP7002_INPR_MASK) >> TVP7002_IP_SHIFT;
 
        /* Do checking of video modes */
-       for (*index = 0; *index < NUM_PRESETS; (*index)++, presets++)
-               if (lpfr == presets->lines_per_frame &&
-                       progressive == presets->progressive) {
-                       if (presets->cpl_min == 0xffff)
+       for (*index = 0; *index < NUM_TIMINGS; (*index)++, timings++)
+               if (lpfr == timings->lines_per_frame &&
+                       progressive == timings->progressive) {
+                       if (timings->cpl_min == 0xffff)
                                break;
-                       if (cpln >= presets->cpl_min && cpln <= presets->cpl_max)
+                       if (cpln >= timings->cpl_min && cpln <= timings->cpl_max)
                                break;
                }
 
-       if (*index == NUM_PRESETS) {
+       if (*index == NUM_TIMINGS) {
                v4l2_dbg(1, debug, sd, "detection failed: lpf = %x, cpl = %x\n",
                                                                lpfr, cpln);
                return -ENOLINK;
        }
 
        /* Update lines per frame and clocks per line info */
-       v4l2_dbg(1, debug, sd, "detected preset: %d\n", *index);
+       v4l2_dbg(1, debug, sd, "detected timings: %d\n", *index);
        return 0;
 }
 
        int index;
        int err = tvp7002_query_dv(sd, &index);
 
-       if (err || index == NUM_PRESETS) {
+       if (err || index == NUM_TIMINGS) {
                qpreset->preset = V4L2_DV_INVALID;
                if (err == -ENOLINK)
                        err = 0;
                return err;
        }
-       qpreset->preset = tvp7002_presets[index].preset;
+       qpreset->preset = tvp7002_timings[index].preset;
        return 0;
 }
 
 
        if (err)
                return err;
-       *timings = tvp7002_presets[index].timings;
+       *timings = tvp7002_timings[index].timings;
        return 0;
 }
 
  */
 static int tvp7002_log_status(struct v4l2_subdev *sd)
 {
-       const struct tvp7002_preset_definition *presets = tvp7002_presets;
+       const struct tvp7002_timings_definition *timings = tvp7002_timings;
        struct tvp7002 *device = to_tvp7002(sd);
        struct v4l2_dv_enum_preset e_preset;
        struct v4l2_dv_preset detected;
        tvp7002_query_dv_preset(sd, &detected);
 
        /* Print standard related code values */
-       for (i = 0; i < NUM_PRESETS; i++, presets++)
-               if (presets->preset == detected.preset)
+       for (i = 0; i < NUM_TIMINGS; i++, timings++)
+               if (timings->preset == detected.preset)
                        break;
 
-       if (v4l_fill_dv_preset_info(device->current_preset->preset, &e_preset))
+       if (v4l_fill_dv_preset_info(device->current_timings->preset, &e_preset))
                return -EINVAL;
 
        v4l2_info(sd, "Selected DV Preset: %s\n", e_preset.name);
        v4l2_info(sd, "   Pixels per line: %u\n", e_preset.width);
        v4l2_info(sd, "   Lines per frame: %u\n\n", e_preset.height);
-       if (i == NUM_PRESETS) {
+       if (i == NUM_TIMINGS) {
                v4l2_info(sd, "Detected DV Preset: None\n");
        } else {
-               if (v4l_fill_dv_preset_info(presets->preset, &e_preset))
+               if (v4l_fill_dv_preset_info(timings->preset, &e_preset))
                        return -EINVAL;
                v4l2_info(sd, "Detected DV Preset: %s\n", e_preset.name);
                v4l2_info(sd, "  Pixels per line: %u\n", e_preset.width);
                struct v4l2_dv_enum_preset *preset)
 {
        /* Check requested format index is within range */
-       if (preset->index >= NUM_PRESETS)
+       if (preset->index >= NUM_TIMINGS)
                return -EINVAL;
 
-       return v4l_fill_dv_preset_info(tvp7002_presets[preset->index].preset, preset);
+       return v4l_fill_dv_preset_info(tvp7002_timings[preset->index].preset, preset);
 }
 
 static int tvp7002_enum_dv_timings(struct v4l2_subdev *sd,
                struct v4l2_enum_dv_timings *timings)
 {
        /* Check requested format index is within range */
-       if (timings->index >= NUM_PRESETS)
+       if (timings->index >= NUM_TIMINGS)
                return -EINVAL;
 
-       timings->timings = tvp7002_presets[timings->index].timings;
+       timings->timings = tvp7002_timings[timings->index].timings;
        return 0;
 }
 
 
        sd = &device->sd;
        device->pdata = c->dev.platform_data;
-       device->current_preset = tvp7002_presets;
+       device->current_timings = tvp7002_timings;
 
        /* Tell v4l2 the device is ready */
        v4l2_i2c_subdev_init(sd, c, &tvp7002_ops);
                return error;
 
        /* Set registers according to default video mode */
-       preset.preset = device->current_preset->preset;
+       preset.preset = device->current_timings->preset;
        error = tvp7002_s_dv_preset(sd, &preset);
 
        v4l2_ctrl_handler_init(&device->hdl, 1);