0002-drm-add-rename-MIPI_DCS_SET_PARTIAL_XXX.patch (1124B)
1 From b6faf8e49d3ce7b8b94d56a88e70926fb35de918 Mon Sep 17 00:00:00 2001 2 From: =?UTF-8?q?Filip=20Matijevi=C4=87?= <filip.matijevic.pz@gmail.com> 3 Date: Sat, 28 Oct 2017 09:18:10 +0200 4 Subject: [PATCH 02/11] drm: add/rename MIPI_DCS_SET_PARTIAL_XXX 5 MIME-Version: 1.0 6 Content-Type: text/plain; charset=UTF-8 7 Content-Transfer-Encoding: 8bit 8 9 Rename MIPI_DCS_SET_PARTIAL_AREA to MIPI_DCS_SET_PARTIAL_ROWS 10 Add MIPI_DCS_SET_PARTIAL_COLUMNS 11 12 Signed-off-by: Filip Matijević <filip.matijevic.pz@gmail.com> 13 --- 14 include/video/mipi_display.h | 3 ++- 15 1 file changed, 2 insertions(+), 1 deletion(-) 16 17 diff --git a/include/video/mipi_display.h b/include/video/mipi_display.h 18 index 19aa65a35546..1d9fdd685ded 100644 19 --- a/include/video/mipi_display.h 20 +++ b/include/video/mipi_display.h 21 @@ -102,7 +102,8 @@ enum { 22 MIPI_DCS_WRITE_MEMORY_START = 0x2C, 23 MIPI_DCS_WRITE_LUT = 0x2D, 24 MIPI_DCS_READ_MEMORY_START = 0x2E, 25 - MIPI_DCS_SET_PARTIAL_AREA = 0x30, 26 + MIPI_DCS_SET_PARTIAL_ROWS = 0x30, 27 + MIPI_DCS_SET_PARTIAL_COLUMNS = 0x31, 28 MIPI_DCS_SET_SCROLL_AREA = 0x33, 29 MIPI_DCS_SET_TEAR_OFF = 0x34, 30 MIPI_DCS_SET_TEAR_ON = 0x35, 31 -- 32 2.14.1 33