[PATCH] Staging: wfx: Fixed a space coding style issue.

Noah Tschirner posted 1 patch 4 years ago
drivers/staging/wfx/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] Staging: wfx: Fixed a space coding style issue.
Posted by Noah Tschirner 4 years ago
Fixed a space coding style issue.

Signed-off-by: Noah Tschirner <noahtschirner@gmail.com>
---
 drivers/staging/wfx/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/wfx/main.c b/drivers/staging/wfx/main.c
index b93b16b900c8..e575a81ca2ca 100644
--- a/drivers/staging/wfx/main.c
+++ b/drivers/staging/wfx/main.c
@@ -170,7 +170,7 @@ bool wfx_api_older_than(struct wfx_dev *wdev, int major, int minor)
  *
  * The PDS file is an array of Time-Length-Value structs.
  */
- int wfx_send_pds(struct wfx_dev *wdev, u8 *buf, size_t len)
+int wfx_send_pds(struct wfx_dev *wdev, u8 *buf, size_t len)
 {
 	int ret, chunk_type, chunk_len, chunk_num = 0;
 
-- 
2.32.0
Re: [PATCH] Staging: wfx: Fixed a space coding style issue.
Posted by Greg KH 4 years ago
On Tue, Apr 26, 2022 at 03:51:48PM +0200, Noah Tschirner wrote:
> Fixed a space coding style issue.
> 
> Signed-off-by: Noah Tschirner <noahtschirner@gmail.com>
> ---
>  drivers/staging/wfx/main.c | 2 +-

This is not a file in the linux-next tree.

Always work off of either linux-next, or the subsystem-specific git tree
so you do not duplicate work that others have done.

thanks,

greg k-h