* [PATCH] drm/dsi: Make set_tear_scanline command consistent
@ 2016-06-13 13:33 Thierry Reding
2016-07-12 11:19 ` Daniel Vetter
0 siblings, 1 reply; 2+ messages in thread
From: Thierry Reding @ 2016-06-13 13:33 UTC (permalink / raw)
To: dri-devel; +Cc: Daniel Vetter, Andrzej Hajda, Vinay Simha BN
From: Thierry Reding <treding@nvidia.com>
Use a consistent name for the function that implements set_tear_scanline
and reword and reformat the kerneldoc slightly.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
drivers/gpu/drm/drm_mipi_dsi.c | 16 ++++++++--------
include/drm/drm_mipi_dsi.h | 2 +-
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/drm_mipi_dsi.c b/drivers/gpu/drm/drm_mipi_dsi.c
index 7938ce7ebed8..5d70b1bec038 100644
--- a/drivers/gpu/drm/drm_mipi_dsi.c
+++ b/drivers/gpu/drm/drm_mipi_dsi.c
@@ -983,17 +983,17 @@ int mipi_dsi_dcs_set_tear_on(struct mipi_dsi_device *dsi,
EXPORT_SYMBOL(mipi_dsi_dcs_set_tear_on);
/**
- * mipi_dsi_set_tear_scanline() - turn on the display module's Tearing Effect
- * output signal on the TE signal line when display module reaches line N
- * defined by STS[n:0].
+ * mipi_dsi_dcs_set_tear_scanline() - set the scanline to use as trigger for
+ * the Tearing Effect output signal of the display module
* @dsi: DSI peripheral device
- * @param: STS[10:0]
+ * @scanline: scanline to use as trigger
+ *
* Return: 0 on success or a negative error code on failure
*/
-int mipi_dsi_set_tear_scanline(struct mipi_dsi_device *dsi, u16 param)
+int mipi_dsi_dcs_set_tear_scanline(struct mipi_dsi_device *dsi, u16 scanline)
{
- u8 payload[3] = { MIPI_DCS_SET_TEAR_SCANLINE, param >> 8,
- param & 0xff };
+ u8 payload[3] = { MIPI_DCS_SET_TEAR_SCANLINE, scanline >> 8,
+ scanline & 0xff };
ssize_t err;
err = mipi_dsi_generic_write(dsi, payload, sizeof(payload));
@@ -1002,7 +1002,7 @@ int mipi_dsi_set_tear_scanline(struct mipi_dsi_device *dsi, u16 param)
return 0;
}
-EXPORT_SYMBOL(mipi_dsi_set_tear_scanline);
+EXPORT_SYMBOL(mipi_dsi_dcs_set_tear_scanline);
/**
* mipi_dsi_dcs_set_pixel_format() - sets the pixel format for the RGB image
diff --git a/include/drm/drm_mipi_dsi.h b/include/drm/drm_mipi_dsi.h
index ec552854a8f8..6ccf144e300b 100644
--- a/include/drm/drm_mipi_dsi.h
+++ b/include/drm/drm_mipi_dsi.h
@@ -263,7 +263,7 @@ int mipi_dsi_dcs_set_column_address(struct mipi_dsi_device *dsi, u16 start,
u16 end);
int mipi_dsi_dcs_set_page_address(struct mipi_dsi_device *dsi, u16 start,
u16 end);
-int mipi_dsi_set_tear_scanline(struct mipi_dsi_device *dsi, u16 param);
+int mipi_dsi_dcs_set_tear_scanline(struct mipi_dsi_device *dsi, u16 scanline);
int mipi_dsi_dcs_set_tear_off(struct mipi_dsi_device *dsi);
int mipi_dsi_dcs_set_tear_on(struct mipi_dsi_device *dsi,
enum mipi_dsi_dcs_tear_mode mode);
--
2.8.3
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] drm/dsi: Make set_tear_scanline command consistent
2016-06-13 13:33 [PATCH] drm/dsi: Make set_tear_scanline command consistent Thierry Reding
@ 2016-07-12 11:19 ` Daniel Vetter
0 siblings, 0 replies; 2+ messages in thread
From: Daniel Vetter @ 2016-07-12 11:19 UTC (permalink / raw)
To: Thierry Reding; +Cc: Daniel Vetter, Andrzej Hajda, dri-devel, Vinay Simha BN
On Mon, Jun 13, 2016 at 03:33:27PM +0200, Thierry Reding wrote:
> From: Thierry Reding <treding@nvidia.com>
>
> Use a consistent name for the function that implements set_tear_scanline
> and reword and reformat the kerneldoc slightly.
>
> Signed-off-by: Thierry Reding <treding@nvidia.com>
Applied to drm-misc.
-Daniel
> ---
> drivers/gpu/drm/drm_mipi_dsi.c | 16 ++++++++--------
> include/drm/drm_mipi_dsi.h | 2 +-
> 2 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/drm_mipi_dsi.c b/drivers/gpu/drm/drm_mipi_dsi.c
> index 7938ce7ebed8..5d70b1bec038 100644
> --- a/drivers/gpu/drm/drm_mipi_dsi.c
> +++ b/drivers/gpu/drm/drm_mipi_dsi.c
> @@ -983,17 +983,17 @@ int mipi_dsi_dcs_set_tear_on(struct mipi_dsi_device *dsi,
> EXPORT_SYMBOL(mipi_dsi_dcs_set_tear_on);
>
> /**
> - * mipi_dsi_set_tear_scanline() - turn on the display module's Tearing Effect
> - * output signal on the TE signal line when display module reaches line N
> - * defined by STS[n:0].
> + * mipi_dsi_dcs_set_tear_scanline() - set the scanline to use as trigger for
> + * the Tearing Effect output signal of the display module
> * @dsi: DSI peripheral device
> - * @param: STS[10:0]
> + * @scanline: scanline to use as trigger
> + *
> * Return: 0 on success or a negative error code on failure
> */
> -int mipi_dsi_set_tear_scanline(struct mipi_dsi_device *dsi, u16 param)
> +int mipi_dsi_dcs_set_tear_scanline(struct mipi_dsi_device *dsi, u16 scanline)
> {
> - u8 payload[3] = { MIPI_DCS_SET_TEAR_SCANLINE, param >> 8,
> - param & 0xff };
> + u8 payload[3] = { MIPI_DCS_SET_TEAR_SCANLINE, scanline >> 8,
> + scanline & 0xff };
> ssize_t err;
>
> err = mipi_dsi_generic_write(dsi, payload, sizeof(payload));
> @@ -1002,7 +1002,7 @@ int mipi_dsi_set_tear_scanline(struct mipi_dsi_device *dsi, u16 param)
>
> return 0;
> }
> -EXPORT_SYMBOL(mipi_dsi_set_tear_scanline);
> +EXPORT_SYMBOL(mipi_dsi_dcs_set_tear_scanline);
>
> /**
> * mipi_dsi_dcs_set_pixel_format() - sets the pixel format for the RGB image
> diff --git a/include/drm/drm_mipi_dsi.h b/include/drm/drm_mipi_dsi.h
> index ec552854a8f8..6ccf144e300b 100644
> --- a/include/drm/drm_mipi_dsi.h
> +++ b/include/drm/drm_mipi_dsi.h
> @@ -263,7 +263,7 @@ int mipi_dsi_dcs_set_column_address(struct mipi_dsi_device *dsi, u16 start,
> u16 end);
> int mipi_dsi_dcs_set_page_address(struct mipi_dsi_device *dsi, u16 start,
> u16 end);
> -int mipi_dsi_set_tear_scanline(struct mipi_dsi_device *dsi, u16 param);
> +int mipi_dsi_dcs_set_tear_scanline(struct mipi_dsi_device *dsi, u16 scanline);
> int mipi_dsi_dcs_set_tear_off(struct mipi_dsi_device *dsi);
> int mipi_dsi_dcs_set_tear_on(struct mipi_dsi_device *dsi,
> enum mipi_dsi_dcs_tear_mode mode);
> --
> 2.8.3
>
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-07-12 11:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-13 13:33 [PATCH] drm/dsi: Make set_tear_scanline command consistent Thierry Reding
2016-07-12 11:19 ` Daniel Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox