Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/dsi: rename MIPI_DCS_SET_PARTIAL_AREA to MIPI_DCS_SET_PARTIAL_ROWS

The DCS command has been named SET_PARTIAL_ROWS in the DCS spec since
v1.02, for more than a decade. Rename the enumeration to match the spec.

v2: add comment about the rename (David Lechner)

Cc: David Lechner <david@lechnology.com>
Cc: Vandita Kulkarni <vandita.kulkarni@intel.com>
Reviewed-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191028150047.22048-4-jani.nikula@intel.com

+2 -2
+1 -1
drivers/gpu/drm/tiny/st7586.c
··· 240 240 241 241 mipi_dbi_command(dbi, ST7586_SET_DISP_DUTY, 0x7f); 242 242 mipi_dbi_command(dbi, ST7586_SET_PART_DISP, 0xa0); 243 - mipi_dbi_command(dbi, MIPI_DCS_SET_PARTIAL_AREA, 0x00, 0x00, 0x00, 0x77); 243 + mipi_dbi_command(dbi, MIPI_DCS_SET_PARTIAL_ROWS, 0x00, 0x00, 0x00, 0x77); 244 244 mipi_dbi_command(dbi, MIPI_DCS_EXIT_INVERT_MODE); 245 245 246 246 msleep(100);
+1 -1
include/video/mipi_display.h
··· 108 108 MIPI_DCS_WRITE_MEMORY_START = 0x2C, 109 109 MIPI_DCS_WRITE_LUT = 0x2D, 110 110 MIPI_DCS_READ_MEMORY_START = 0x2E, 111 - MIPI_DCS_SET_PARTIAL_AREA = 0x30, 111 + MIPI_DCS_SET_PARTIAL_ROWS = 0x30, /* MIPI DCS 1.02 - MIPI_DCS_SET_PARTIAL_AREA before that */ 112 112 MIPI_DCS_SET_PARTIAL_COLUMNS = 0x31, 113 113 MIPI_DCS_SET_SCROLL_AREA = 0x33, 114 114 MIPI_DCS_SET_TEAR_OFF = 0x34,