linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fbdev/hyperv_fb: Convert comma to semicolon
@ 2024-09-02  7:44 Chen Ni
  2024-09-05  7:25 ` Wei Liu
  0 siblings, 1 reply; 4+ messages in thread
From: Chen Ni @ 2024-09-02  7:44 UTC (permalink / raw)
  To: kys, haiyangz, wei.liu, decui, deller, gpiccoli, mikelley
  Cc: linux-hyperv, linux-fbdev, dri-devel, linux-kernel, Chen Ni

Replace a comma between expression statements by a semicolon.

Fixes: d786e00d19f9 ("drivers: hv, hyperv_fb: Untangle and refactor Hyper-V panic notifiers")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
 drivers/video/fbdev/hyperv_fb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/fbdev/hyperv_fb.c b/drivers/video/fbdev/hyperv_fb.c
index 8fdccf033b2d..7fdb5edd7e2e 100644
--- a/drivers/video/fbdev/hyperv_fb.c
+++ b/drivers/video/fbdev/hyperv_fb.c
@@ -1189,7 +1189,7 @@ static int hvfb_probe(struct hv_device *hdev,
 	 * which is almost at the end of list, with priority = INT_MIN + 1.
 	 */
 	par->hvfb_panic_nb.notifier_call = hvfb_on_panic;
-	par->hvfb_panic_nb.priority = INT_MIN + 10,
+	par->hvfb_panic_nb.priority = INT_MIN + 10;
 	atomic_notifier_chain_register(&panic_notifier_list,
 				       &par->hvfb_panic_nb);
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] fbdev/hyperv_fb: Convert comma to semicolon
  2024-09-02  7:44 [PATCH] fbdev/hyperv_fb: Convert comma to semicolon Chen Ni
@ 2024-09-05  7:25 ` Wei Liu
  2024-09-05  8:30   ` Helge Deller
  0 siblings, 1 reply; 4+ messages in thread
From: Wei Liu @ 2024-09-05  7:25 UTC (permalink / raw)
  To: Chen Ni
  Cc: kys, haiyangz, wei.liu, decui, deller, gpiccoli, mikelley,
	linux-hyperv, linux-fbdev, dri-devel, linux-kernel

On Mon, Sep 02, 2024 at 03:44:02PM +0800, Chen Ni wrote:
> Replace a comma between expression statements by a semicolon.
> 
> Fixes: d786e00d19f9 ("drivers: hv, hyperv_fb: Untangle and refactor Hyper-V panic notifiers")
> Signed-off-by: Chen Ni <nichen@iscas.ac.cn>

Applied to hyperv-fixes, thanks!

> ---
>  drivers/video/fbdev/hyperv_fb.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/video/fbdev/hyperv_fb.c b/drivers/video/fbdev/hyperv_fb.c
> index 8fdccf033b2d..7fdb5edd7e2e 100644
> --- a/drivers/video/fbdev/hyperv_fb.c
> +++ b/drivers/video/fbdev/hyperv_fb.c
> @@ -1189,7 +1189,7 @@ static int hvfb_probe(struct hv_device *hdev,
>  	 * which is almost at the end of list, with priority = INT_MIN + 1.
>  	 */
>  	par->hvfb_panic_nb.notifier_call = hvfb_on_panic;
> -	par->hvfb_panic_nb.priority = INT_MIN + 10,
> +	par->hvfb_panic_nb.priority = INT_MIN + 10;
>  	atomic_notifier_chain_register(&panic_notifier_list,
>  				       &par->hvfb_panic_nb);
>  
> -- 
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] fbdev/hyperv_fb: Convert comma to semicolon
  2024-09-05  7:25 ` Wei Liu
@ 2024-09-05  8:30   ` Helge Deller
  2024-09-05 15:06     ` Wei Liu
  0 siblings, 1 reply; 4+ messages in thread
From: Helge Deller @ 2024-09-05  8:30 UTC (permalink / raw)
  To: Wei Liu, Chen Ni
  Cc: kys, haiyangz, decui, gpiccoli, mikelley, linux-hyperv,
	linux-fbdev, dri-devel, linux-kernel

On 9/5/24 09:25, Wei Liu wrote:
> On Mon, Sep 02, 2024 at 03:44:02PM +0800, Chen Ni wrote:
>> Replace a comma between expression statements by a semicolon.
>>
>> Fixes: d786e00d19f9 ("drivers: hv, hyperv_fb: Untangle and refactor Hyper-V panic notifiers")
>> Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
>
> Applied to hyperv-fixes, thanks!

I added it to the fbdev git tree 3 days ago.

Either you or me should drop it from our trees.
Please let me know what you prefer.

Helge


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] fbdev/hyperv_fb: Convert comma to semicolon
  2024-09-05  8:30   ` Helge Deller
@ 2024-09-05 15:06     ` Wei Liu
  0 siblings, 0 replies; 4+ messages in thread
From: Wei Liu @ 2024-09-05 15:06 UTC (permalink / raw)
  To: Helge Deller
  Cc: Wei Liu, Chen Ni, kys, haiyangz, decui, gpiccoli, mikelley,
	linux-hyperv, linux-fbdev, dri-devel, linux-kernel

On Thu, Sep 05, 2024 at 10:30:56AM +0200, Helge Deller wrote:
> On 9/5/24 09:25, Wei Liu wrote:
> > On Mon, Sep 02, 2024 at 03:44:02PM +0800, Chen Ni wrote:
> > > Replace a comma between expression statements by a semicolon.
> > > 
> > > Fixes: d786e00d19f9 ("drivers: hv, hyperv_fb: Untangle and refactor Hyper-V panic notifiers")
> > > Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
> > 
> > Applied to hyperv-fixes, thanks!
> 
> I added it to the fbdev git tree 3 days ago.
> 
> Either you or me should drop it from our trees.
> Please let me know what you prefer.

Thanks for picking it up. I'll drop it from my tree.

Thanks,
Wei.

> 
> Helge
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-09-05 15:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-02  7:44 [PATCH] fbdev/hyperv_fb: Convert comma to semicolon Chen Ni
2024-09-05  7:25 ` Wei Liu
2024-09-05  8:30   ` Helge Deller
2024-09-05 15:06     ` Wei Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).