[PATCH] staging: rtl8723bs: fix line over 80 chars in ioctl_cfg80211.c

G Kranthi posted 1 patch 3 weeks, 4 days ago
drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
[PATCH] staging: rtl8723bs: fix line over 80 chars in ioctl_cfg80211.c
Posted by G Kranthi 3 weeks, 4 days ago
From 38cf4de6f8d3946b71ba340864d673cfb58c74ac Mon Sep 17 00:00:00 2001
From: Kranthi Gudisha <kranthi.gudisha@gmail.com>
Date: Sat, 28 Feb 2026 22:57:25 +0530
Subject: [PATCH] taging: rtl8723bs: fix line over 80 chars in ioctl_cfg80211.c

Fix line exceeding 80 characters in function signature of
rtw_cfg80211_add_monitor_if() by wrapping parameters to
align with the open parenthesis.

Signed-off-by: Kranthi Gudisha <kranthi.gudisha@gmail.com>
---
 drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
b/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
index a47d0d3fa2b7..75ce52498bb6 100644
--- a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
+++ b/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
@@ -2109,7 +2109,9 @@ static const struct net_device_ops
rtw_cfg80211_monitor_if_ops = {
     .ndo_start_xmit = rtw_cfg80211_monitor_if_xmit_entry,
 };

-static int rtw_cfg80211_add_monitor_if(struct adapter *padapter, char
*name, struct net_device **ndev)
+static int rtw_cfg80211_add_monitor_if(struct adapter *padapter,
+            char *name,
+            struct net_device **ndev)
 {
     int ret = 0;
     struct net_device *mon_ndev = NULL;
-- 
2.34.1
Re: [PATCH] staging: rtl8723bs: fix line over 80 chars in ioctl_cfg80211.c
Posted by Greg KH 3 weeks, 4 days ago
On Fri, Mar 13, 2026 at 09:52:30AM +0530, G Kranthi wrote:
> >From 38cf4de6f8d3946b71ba340864d673cfb58c74ac Mon Sep 17 00:00:00 2001
> From: Kranthi Gudisha <kranthi.gudisha@gmail.com>
> Date: Sat, 28 Feb 2026 22:57:25 +0530
> Subject: [PATCH] taging: rtl8723bs: fix line over 80 chars in ioctl_cfg80211.c
> 
> Fix line exceeding 80 characters in function signature of
> rtw_cfg80211_add_monitor_if() by wrapping parameters to
> align with the open parenthesis.
> 
> Signed-off-by: Kranthi Gudisha <kranthi.gudisha@gmail.com>
> ---
>  drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
> b/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
> index a47d0d3fa2b7..75ce52498bb6 100644
> --- a/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
> +++ b/drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
> @@ -2109,7 +2109,9 @@ static const struct net_device_ops
> rtw_cfg80211_monitor_if_ops = {
>      .ndo_start_xmit = rtw_cfg80211_monitor_if_xmit_entry,
>  };
> 
> -static int rtw_cfg80211_add_monitor_if(struct adapter *padapter, char
> *name, struct net_device **ndev)
> +static int rtw_cfg80211_add_monitor_if(struct adapter *padapter,
> +            char *name,
> +            struct net_device **ndev)
>  {
>      int ret = 0;
>      struct net_device *mon_ndev = NULL;
> -- 
> 2.34.1

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- Your patch is malformed (tabs converted to spaces, linewrapped, etc.)
  and can not be applied.  Please read the file,
  Documentation/process/email-clients.rst in order to fix this.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot