* [PATCH] staging: gpib: warning: variable 'nec_priv' set but not used warning
@ 2025-03-21 1:06 sunliming
2025-04-03 14:08 ` Greg KH
0 siblings, 1 reply; 5+ messages in thread
From: sunliming @ 2025-03-21 1:06 UTC (permalink / raw)
To: dpenkler, gregkh, arnd, dan.carpenter, everestkc, niharchaithanya,
linux-staging, linux-kernel
Cc: sunliming, kernel test robot
From: sunliming <sunliming@kylinos.cn>
Fix below kernel warning:
drivers/staging/gpib/eastwood/fluke_gpib.c:196:23: warning: variable 'nec_priv' set but not
used [-Wunused-but-set-variable]
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: sunliming <sunliming@kylinos.cn>
---
drivers/staging/gpib/eastwood/fluke_gpib.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/staging/gpib/eastwood/fluke_gpib.c b/drivers/staging/gpib/eastwood/fluke_gpib.c
index 0304c5de4ccd..6854a745ccff 100644
--- a/drivers/staging/gpib/eastwood/fluke_gpib.c
+++ b/drivers/staging/gpib/eastwood/fluke_gpib.c
@@ -194,10 +194,8 @@ static int fluke_line_status(const gpib_board_t *board)
int status = ValidALL;
int bsr_bits;
struct fluke_priv *e_priv;
- struct nec7210_priv *nec_priv;
e_priv = board->private_data;
- nec_priv = &e_priv->nec7210_priv;
bsr_bits = fluke_paged_read_byte(e_priv, BUS_STATUS, BUS_STATUS_PAGE);
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] staging: gpib: warning: variable 'nec_priv' set but not used warning
2025-03-21 1:06 [PATCH] staging: gpib: warning: variable 'nec_priv' set but not used warning sunliming
@ 2025-04-03 14:08 ` Greg KH
2025-04-04 6:08 ` Sunliming
0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2025-04-03 14:08 UTC (permalink / raw)
To: sunliming
Cc: dpenkler, arnd, dan.carpenter, everestkc, niharchaithanya,
linux-staging, linux-kernel, sunliming, kernel test robot
On Fri, Mar 21, 2025 at 09:06:49AM +0800, sunliming@linux.dev wrote:
> From: sunliming <sunliming@kylinos.cn>
>
> Fix below kernel warning:
> drivers/staging/gpib/eastwood/fluke_gpib.c:196:23: warning: variable 'nec_priv' set but not
> used [-Wunused-but-set-variable]
>
> Reported-by: kernel test robot <lkp@intel.com>
Please link to where this was reported. The report from the robot will
have the needed information in it on how to do this.
> Signed-off-by: sunliming <sunliming@kylinos.cn>
As per our documentation, please use your name, not your email alias, on
the signed-off-by line.
thanks,
gregk -h
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] staging: gpib: warning: variable 'nec_priv' set but not used warning
2025-04-03 14:08 ` Greg KH
@ 2025-04-04 6:08 ` Sunliming
2025-04-04 7:53 ` Dan Carpenter
0 siblings, 1 reply; 5+ messages in thread
From: Sunliming @ 2025-04-04 6:08 UTC (permalink / raw)
To: Greg KH
Cc: dpenkler, arnd, dan.carpenter, everestkc, niharchaithanya,
linux-staging, linux-kernel, sunliming, kernel test robot
On 2025/4/3 22:08, Greg KH wrote:
> On Fri, Mar 21, 2025 at 09:06:49AM +0800, sunliming@linux.dev wrote:
>> From: sunliming <sunliming@kylinos.cn>
>>
>> Fix below kernel warning:
>> drivers/staging/gpib/eastwood/fluke_gpib.c:196:23: warning: variable 'nec_priv' set but not
>> used [-Wunused-but-set-variable]
>>
>> Reported-by: kernel test robot <lkp@intel.com>
> Please link to where this was reported. The report from the robot will
> have the needed information in it on how to do this.
Get it, I will resend the patch to fix this.
Thanks.
>> Signed-off-by: sunliming <sunliming@kylinos.cn>
> As per our documentation, please use your name, not your email alias, on
> the signed-off-by line.
It's not my email alias,my name is sunliming too.
Thanks.
> thanks,
>
> gregk -h
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] staging: gpib: warning: variable 'nec_priv' set but not used warning
2025-04-04 6:08 ` Sunliming
@ 2025-04-04 7:53 ` Dan Carpenter
2025-04-04 9:15 ` sunliming
0 siblings, 1 reply; 5+ messages in thread
From: Dan Carpenter @ 2025-04-04 7:53 UTC (permalink / raw)
To: Sunliming
Cc: Greg KH, dpenkler, arnd, everestkc, niharchaithanya,
linux-staging, linux-kernel, sunliming, kernel test robot
On Fri, Apr 04, 2025 at 02:08:38PM +0800, Sunliming wrote:
>
> On 2025/4/3 22:08, Greg KH wrote:
> > On Fri, Mar 21, 2025 at 09:06:49AM +0800, sunliming@linux.dev wrote:
> > > From: sunliming <sunliming@kylinos.cn>
> > >
> > > Fix below kernel warning:
> > > drivers/staging/gpib/eastwood/fluke_gpib.c:196:23: warning: variable 'nec_priv' set but not
> > > used [-Wunused-but-set-variable]
> > >
> > > Reported-by: kernel test robot <lkp@intel.com>
> > Please link to where this was reported. The report from the robot will
> > have the needed information in it on how to do this.
>
> Get it, I will resend the patch to fix this.
>
> Thanks.
>
> > > Signed-off-by: sunliming <sunliming@kylinos.cn>
> > As per our documentation, please use your name, not your email alias, on
> > the signed-off-by line.
>
> It's not my email alias,my name is sunliming too.
Why is it capitalized on your From header on your email but not in your
Signed-off-by?
regards,
dan carpenter
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] staging: gpib: warning: variable 'nec_priv' set but not used warning
2025-04-04 7:53 ` Dan Carpenter
@ 2025-04-04 9:15 ` sunliming
0 siblings, 0 replies; 5+ messages in thread
From: sunliming @ 2025-04-04 9:15 UTC (permalink / raw)
To: Dan Carpenter
Cc: Greg KH, dpenkler, arnd, everestkc, niharchaithanya,
linux-staging, linux-kernel, sunliming, kernel test robot
On 2025/4/4 15:53, Dan Carpenter wrote:
> On Fri, Apr 04, 2025 at 02:08:38PM +0800, Sunliming wrote:
>> On 2025/4/3 22:08, Greg KH wrote:
>>> On Fri, Mar 21, 2025 at 09:06:49AM +0800, sunliming@linux.dev wrote:
>>>> From: sunliming <sunliming@kylinos.cn>
>>>>
>>>> Fix below kernel warning:
>>>> drivers/staging/gpib/eastwood/fluke_gpib.c:196:23: warning: variable 'nec_priv' set but not
>>>> used [-Wunused-but-set-variable]
>>>>
>>>> Reported-by: kernel test robot <lkp@intel.com>
>>> Please link to where this was reported. The report from the robot will
>>> have the needed information in it on how to do this.
>> Get it, I will resend the patch to fix this.
>>
>> Thanks.
>>
>>>> Signed-off-by: sunliming <sunliming@kylinos.cn>
>>> As per our documentation, please use your name, not your email alias, on
>>> the signed-off-by line.
>> It's not my email alias,my name is sunliming too.
> Why is it capitalized on your From header on your email but not in your
> Signed-off-by?
I didn't notice that my email and Gitconfig have different names set.
Thank you
for letting me know, I will fix it.
>
> regards,
> dan carpenter
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-04-04 9:16 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-21 1:06 [PATCH] staging: gpib: warning: variable 'nec_priv' set but not used warning sunliming
2025-04-03 14:08 ` Greg KH
2025-04-04 6:08 ` Sunliming
2025-04-04 7:53 ` Dan Carpenter
2025-04-04 9:15 ` sunliming
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.