[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210920152601.170453-1-zacklukem.kernel@gmail.com>
Date: Mon, 20 Sep 2021 08:26:03 -0700
From: Zachary Mayhew <zacklukem.kernel@...il.com>
To: gregkh@...uxfoundation.org
Cc: Zachary Mayhew <zacklukem.kernel@...il.com>,
dri-devel@...ts.freedesktop.org, linux-fbdev@...ts.kernel.org,
linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org
Subject: [PATCH] staging: fbtft: add docs for fbtft_write_spi()
Subject: [PATCH] staging: fbtft: add docs for fbtft_write_spi()
This patch adds documentation for fbtft_write_spi() to make its
calling context clear and explain what it does.
Signed-off-by: Zachary Mayhew <zacklukem.kernel@...il.com>
---
drivers/staging/fbtft/fbtft-io.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/staging/fbtft/fbtft-io.c b/drivers/staging/fbtft/fbtft-io.c
index de1904a443c2..985d7cf8c774 100644
--- a/drivers/staging/fbtft/fbtft-io.c
+++ b/drivers/staging/fbtft/fbtft-io.c
@@ -5,6 +5,19 @@
#include <linux/spi/spi.h>
#include "fbtft.h"
+/**
+ * fbtft_write_spi() - write data to current spi
+ * @par: Driver data including driver &struct spi_device
+ * @buf: Buffer to write to spi
+ * @len: Length of the buffer
+ * Context: can sleep
+ *
+ * Builds an &struct spi_transfer and &struct spi_message object based on the
+ * given @buf and @len. These are then used in a call to spi_sync() which will
+ * write to the spi.
+ *
+ * Return: zero on success or else a negative error code
+ */
int fbtft_write_spi(struct fbtft_par *par, void *buf, size_t len)
{
struct spi_transfer t = {
--
2.33.0
Powered by blists - more mailing lists