};
 
 /**
- * mtk_jpeg_variant - mtk jpeg driver variant
+ * struct mtk_jpeg_variant - mtk jpeg driver variant
  * @clks:                      clock names
  * @num_clks:                  numbers of clock
- * @format:                    jpeg driver's internal color format
- * @num_format:                        number of format
+ * @formats:                   jpeg driver's internal color format
+ * @num_formats:               number of formats
  * @qops:                      the callback of jpeg vb2_ops
  * @irq_handler:               jpeg irq handler callback
  * @hw_reset:                  jpeg hardware reset callback
 };
 
 /**
- * struct mt_jpeg - JPEG IP abstraction
+ * struct mtk_jpeg_dev - JPEG IP abstraction
  * @lock:              the mutex protecting this structure
  * @hw_lock:           spinlock protecting the hw device resource
  * @workqueue:         decode work queue
 };
 
 /**
- * struct jpeg_fmt - driver's internal color format data
+ * struct mtk_jpeg_fmt - driver's internal color format data
  * @fourcc:    the fourcc code, 0 if not applicable
  * @hw_format: hardware format value
  * @h_sample:  horizontal sample count of plane in 4 * 4 pixel image
 };
 
 /**
- * mtk_jpeg_q_data - parameters of one queue
+ * struct mtk_jpeg_q_data - parameters of one queue
  * @fmt:         driver-specific format of this queue
  * @pix_mp:      multiplanar format
  * @enc_crop_rect:     jpeg encoder crop information
 };
 
 /**
- * mtk_jpeg_ctx - the device context data
+ * struct mtk_jpeg_ctx - the device context data
  * @jpeg:              JPEG IP device for this context
  * @out_q:             source (output) queue information
  * @cap_q:             destination (capture) queue queue information