From: Jaehee Park Date: Tue, 29 Mar 2022 22:25:34 +0000 (-0400) Subject: staging: wfx: remove space at the start of the line X-Git-Tag: v5.19-rc1~48^2~332 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=25a0065f27ae03b59b3a10fe0adffdc9e53b1273;p=linux-block.git staging: wfx: remove space at the start of the line Remove spaces at the start of the line to follow the linux kernel coding style. Issue found by checkpatch: WARNING: please, no spaces at the start of a line. Signed-off-by: Jaehee Park Signed-off-by: Jérôme Pouiller Link: https://lore.kernel.org/r/20220329222534.GA1002253@jaehee-ThinkPad-X1-Extreme Signed-off-by: Greg Kroah-Hartman --- 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;