drm/omap: panel-dsi-cm: use common MIPI DCS 1.3 defines
Drop local definition of common MIPI DCS 1.3 defines. Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://patchwork.freedesktop.org/patch/msgid/20201215104657.802264-17-tomi.valkeinen@ti.com
This commit is contained in:
parent
ea83647d5e
commit
7c5662babf
@ -28,8 +28,6 @@
|
||||
#include "../dss/omapdss.h"
|
||||
|
||||
#define DCS_READ_NUM_ERRORS 0x05
|
||||
#define DCS_BRIGHTNESS 0x51
|
||||
#define DCS_CTRL_DISPLAY 0x53
|
||||
#define DCS_GET_ID1 0xda
|
||||
#define DCS_GET_ID2 0xdb
|
||||
#define DCS_GET_ID3 0xdc
|
||||
@ -334,7 +332,8 @@ static int dsicm_bl_update_status(struct backlight_device *dev)
|
||||
|
||||
r = dsicm_wake_up(ddata);
|
||||
if (!r)
|
||||
r = dsicm_dcs_write_1(ddata, DCS_BRIGHTNESS, level);
|
||||
r = dsicm_dcs_write_1(
|
||||
ddata, MIPI_DCS_SET_DISPLAY_BRIGHTNESS, level);
|
||||
|
||||
src->ops->dsi.bus_unlock(src);
|
||||
}
|
||||
@ -597,11 +596,11 @@ static int dsicm_power_on(struct panel_drv_data *ddata)
|
||||
if (r)
|
||||
goto err;
|
||||
|
||||
r = dsicm_dcs_write_1(ddata, DCS_BRIGHTNESS, 0xff);
|
||||
r = dsicm_dcs_write_1(ddata, MIPI_DCS_SET_DISPLAY_BRIGHTNESS, 0xff);
|
||||
if (r)
|
||||
goto err;
|
||||
|
||||
r = dsicm_dcs_write_1(ddata, DCS_CTRL_DISPLAY,
|
||||
r = dsicm_dcs_write_1(ddata, MIPI_DCS_WRITE_CONTROL_DISPLAY,
|
||||
(1<<2) | (1<<5)); /* BL | BCTRL */
|
||||
if (r)
|
||||
goto err;
|
||||
|
Loading…
x
Reference in New Issue
Block a user