[PATCH] staging: fbtft: fix spelling mistake "writte" -> "written"

Santiago Almeida posted 1 patch 2 months ago
drivers/staging/fbtft/fb_st7789v.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] staging: fbtft: fix spelling mistake "writte" -> "written"
Posted by Santiago Almeida 2 months ago
Correct a typo in a comment within the fb_st7789v driver.
Found by codespell.

Signed-off-by: Santiago Almeida <santiagoalmeidaburbano@gmail.com>
---
 drivers/staging/fbtft/fb_st7789v.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/fbtft/fb_st7789v.c b/drivers/staging/fbtft/fb_st7789v.c
index 861a154144e6..9c85430ae82e 100644
--- a/drivers/staging/fbtft/fb_st7789v.c
+++ b/drivers/staging/fbtft/fb_st7789v.c
@@ -221,7 +221,7 @@ static int init_display(struct fbtft_par *par)
  * write_vmem() - write data to display.
  * @par: FBTFT parameter object.
  * @offset: offset from screen_buffer.
- * @len: the length of data to be writte.
+ * @len: the length of data to be write.
  *
  * Return: 0 on success, or a negative error code otherwise.
  */
-- 
2.53.0
Re: [PATCH] staging: fbtft: fix spelling mistake "writte" -> "written"
Posted by Dan Carpenter 2 months ago
On Thu, Feb 12, 2026 at 01:18:02AM -0500, Santiago Almeida wrote:
> Correct a typo in a comment within the fb_st7789v driver.
> Found by codespell.
> 
> Signed-off-by: Santiago Almeida <santiagoalmeidaburbano@gmail.com>
> ---
>  drivers/staging/fbtft/fb_st7789v.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/fbtft/fb_st7789v.c b/drivers/staging/fbtft/fb_st7789v.c
> index 861a154144e6..9c85430ae82e 100644
> --- a/drivers/staging/fbtft/fb_st7789v.c
> +++ b/drivers/staging/fbtft/fb_st7789v.c
> @@ -221,7 +221,7 @@ static int init_display(struct fbtft_par *par)
>   * write_vmem() - write data to display.
>   * @par: FBTFT parameter object.
>   * @offset: offset from screen_buffer.
> - * @len: the length of data to be writte.
> + * @len: the length of data to be write.

written.

regards,
dan carpenter