···999999EXPORT_SYMBOL(mipi_dsi_dcs_set_tear_on);1000100010011001/**10021002+ * mipi_dsi_dcs_set_pixel_format() - sets the pixel format for the RGB image10031003+ * data used by the interface10041004+ * @dsi: DSI peripheral device10051005+ * @format: pixel format10061006+ *10071007+ * Return: 0 on success or a negative error code on failure.10081008+ */10091009+int mipi_dsi_dcs_set_pixel_format(struct mipi_dsi_device *dsi, u8 format)10101010+{10111011+ ssize_t err;10121012+10131013+ err = mipi_dsi_dcs_write(dsi, MIPI_DCS_SET_PIXEL_FORMAT, &format,10141014+ sizeof(format));10151015+ if (err < 0)10161016+ return err;10171017+10181018+ return 0;10191019+}10201020+EXPORT_SYMBOL(mipi_dsi_dcs_set_pixel_format);10211021+10221022+/**10021023 * mipi_dsi_dcs_set_tear_scanline() - set the scanline to use as trigger for10031024 * the Tearing Effect output signal of the display module10041025 * @dsi: DSI peripheral device···10401019 return 0;10411020}10421021EXPORT_SYMBOL(mipi_dsi_dcs_set_tear_scanline);10431043-10441044-/**10451045- * mipi_dsi_dcs_set_pixel_format() - sets the pixel format for the RGB image10461046- * data used by the interface10471047- * @dsi: DSI peripheral device10481048- * @format: pixel format10491049- *10501050- * Return: 0 on success or a negative error code on failure.10511051- */10521052-int mipi_dsi_dcs_set_pixel_format(struct mipi_dsi_device *dsi, u8 format)10531053-{10541054- ssize_t err;10551055-10561056- err = mipi_dsi_dcs_write(dsi, MIPI_DCS_SET_PIXEL_FORMAT, &format,10571057- sizeof(format));10581058- if (err < 0)10591059- return err;10601060-10611061- return 0;10621062-}10631063-EXPORT_SYMBOL(mipi_dsi_dcs_set_pixel_format);1064102210651023static int mipi_dsi_drv_probe(struct device *dev)10661024{