2021-03-21 20:09:54

by dev.dragon

[permalink] [raw]
Subject: [PATCH] Staging: wimax: i2400m: fixed a space coding style issue.

From: Dmitrii Wolf <[email protected]>

Fixed a coding style.

Signed-off-by: Dmitrii Wolf <[email protected]>
---
drivers/staging/wimax/i2400m/debugfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/wimax/i2400m/debugfs.c b/drivers/staging/wimax/i2400m/debugfs.c
index 1c640b41ea4c..4e6e1e3f015e 100644
--- a/drivers/staging/wimax/i2400m/debugfs.c
+++ b/drivers/staging/wimax/i2400m/debugfs.c
@@ -170,7 +170,7 @@ int debugfs_i2400m_reset_set(void *data, u64 val)
int result;
struct i2400m *i2400m = data;
enum i2400m_reset_type rt = val;
- switch(rt) {
+ switch (rt) {
case I2400M_RT_WARM:
case I2400M_RT_COLD:
case I2400M_RT_BUS:
--
2.25.1


2021-03-22 07:56:06

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH] Staging: wimax: i2400m: fixed a space coding style issue.

On Sun, Mar 21, 2021 at 09:26:02PM +0300, [email protected] wrote:
> From: Dmitrii Wolf <[email protected]>
>
> Fixed a coding style.
>
> Signed-off-by: Dmitrii Wolf <[email protected]>
> ---
> drivers/staging/wimax/i2400m/debugfs.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/wimax/i2400m/debugfs.c b/drivers/staging/wimax/i2400m/debugfs.c
> index 1c640b41ea4c..4e6e1e3f015e 100644
> --- a/drivers/staging/wimax/i2400m/debugfs.c
> +++ b/drivers/staging/wimax/i2400m/debugfs.c
> @@ -170,7 +170,7 @@ int debugfs_i2400m_reset_set(void *data, u64 val)
> int result;
> struct i2400m *i2400m = data;
> enum i2400m_reset_type rt = val;
> - switch(rt) {
> + switch (rt) {
> case I2400M_RT_WARM:
> case I2400M_RT_COLD:
> case I2400M_RT_BUS:
> --
> 2.25.1
>

Sorry, but this file is now gone from my tree and from linux-next:
https://lore.kernel.org/r/[email protected]

greg k-h