Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1694143 > unrolled thread

[PATCH] staging: vboxvideo: remove unused variables

Started byPaolo Cretaro <paolocretaro@gmail.com>
First post2017-07-22 13:00 +0200
Last post2017-07-23 12:20 +0200
Articles 3 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] staging: vboxvideo: remove unused variables Paolo Cretaro <paolocretaro@gmail.com> - 2017-07-22 13:00 +0200
    Re: [PATCH] staging: vboxvideo: remove unused variables Hans de Goede <hdegoede@redhat.com> - 2017-07-22 20:20 +0200
      Re: [PATCH] staging: vboxvideo: remove unused variables Michael Thayer <michael.thayer@oracle.com> - 2017-07-23 12:20 +0200

#1694143 — [PATCH] staging: vboxvideo: remove unused variables

FromPaolo Cretaro <paolocretaro@gmail.com>
Date2017-07-22 13:00 +0200
Subject[PATCH] staging: vboxvideo: remove unused variables
Message-ID<u60iB-SX-3@gated-at.bofh.it>
Fix compiler warnings:
vbox_mode.c:57:15: warning: variable ‘crtc_id’ set but not used
vbox_mode.c:581:25: warning: variable ‘vbox_connector’ set but not used

Signed-off-by: Paolo Cretaro <paolocretaro@gmail.com>
---
 drivers/staging/vboxvideo/vbox_mode.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/drivers/staging/vboxvideo/vbox_mode.c b/drivers/staging/vboxvideo/vbox_mode.c
index f2b85f3256fa..a7eea70a3804 100644
--- a/drivers/staging/vboxvideo/vbox_mode.c
+++ b/drivers/staging/vboxvideo/vbox_mode.c
@@ -54,14 +54,12 @@ static void vbox_do_modeset(struct drm_crtc *crtc,
 	struct vbox_crtc *vbox_crtc = to_vbox_crtc(crtc);
 	struct vbox_private *vbox;
 	int width, height, bpp, pitch;
-	unsigned int crtc_id;
 	u16 flags;
 	s32 x_offset, y_offset;
 
 	vbox = crtc->dev->dev_private;
 	width = mode->hdisplay ? mode->hdisplay : 640;
 	height = mode->vdisplay ? mode->vdisplay : 480;
-	crtc_id = vbox_crtc->crtc_id;
 	bpp = crtc->enabled ? CRTC_FB(crtc)->format->cpp[0] * 8 : 32;
 	pitch = crtc->enabled ? CRTC_FB(crtc)->pitches[0] : width * bpp / 8;
 	x_offset = vbox->single_framebuffer ? crtc->x : vbox_crtc->x_hint;
@@ -578,9 +576,6 @@ static int vbox_mode_valid(struct drm_connector *connector,
 
 static void vbox_connector_destroy(struct drm_connector *connector)
 {
-	struct vbox_connector *vbox_connector;
-
-	vbox_connector = to_vbox_connector(connector);
 	drm_connector_unregister(connector);
 	drm_connector_cleanup(connector);
 	kfree(connector);
-- 
2.13.3

[toc] | [next] | [standalone]


#1694182

FromHans de Goede <hdegoede@redhat.com>
Date2017-07-22 20:20 +0200
Message-ID<u67ap-5g7-1@gated-at.bofh.it>
In reply to#1694143
Hi,

On 22-07-17 12:55, Paolo Cretaro wrote:
> Fix compiler warnings:
> vbox_mode.c:57:15: warning: variable ‘crtc_id’ set but not used
> vbox_mode.c:581:25: warning: variable ‘vbox_connector’ set but not used
> 
> Signed-off-by: Paolo Cretaro <paolocretaro@gmail.com>

Patch looks good to me:

Acked-by: Hans de Goede <hdegoede@redhat.com>

Regards,

Hans


> ---
>   drivers/staging/vboxvideo/vbox_mode.c | 5 -----
>   1 file changed, 5 deletions(-)
> 
> diff --git a/drivers/staging/vboxvideo/vbox_mode.c b/drivers/staging/vboxvideo/vbox_mode.c
> index f2b85f3256fa..a7eea70a3804 100644
> --- a/drivers/staging/vboxvideo/vbox_mode.c
> +++ b/drivers/staging/vboxvideo/vbox_mode.c
> @@ -54,14 +54,12 @@ static void vbox_do_modeset(struct drm_crtc *crtc,
>   	struct vbox_crtc *vbox_crtc = to_vbox_crtc(crtc);
>   	struct vbox_private *vbox;
>   	int width, height, bpp, pitch;
> -	unsigned int crtc_id;
>   	u16 flags;
>   	s32 x_offset, y_offset;
>   
>   	vbox = crtc->dev->dev_private;
>   	width = mode->hdisplay ? mode->hdisplay : 640;
>   	height = mode->vdisplay ? mode->vdisplay : 480;
> -	crtc_id = vbox_crtc->crtc_id;
>   	bpp = crtc->enabled ? CRTC_FB(crtc)->format->cpp[0] * 8 : 32;
>   	pitch = crtc->enabled ? CRTC_FB(crtc)->pitches[0] : width * bpp / 8;
>   	x_offset = vbox->single_framebuffer ? crtc->x : vbox_crtc->x_hint;
> @@ -578,9 +576,6 @@ static int vbox_mode_valid(struct drm_connector *connector,
>   
>   static void vbox_connector_destroy(struct drm_connector *connector)
>   {
> -	struct vbox_connector *vbox_connector;
> -
> -	vbox_connector = to_vbox_connector(connector);
>   	drm_connector_unregister(connector);
>   	drm_connector_cleanup(connector);
>   	kfree(connector);
> 

[toc] | [prev] | [next] | [standalone]


#1694281

FromMichael Thayer <michael.thayer@oracle.com>
Date2017-07-23 12:20 +0200
Message-ID<u6m9r-6gQ-1@gated-at.bofh.it>
In reply to#1694182
Hello,

22.07.2017 20:17, Hans de Goede wrote:
> Hi,
> 
> On 22-07-17 12:55, Paolo Cretaro wrote:
>> Fix compiler warnings:
>> vbox_mode.c:57:15: warning: variable ‘crtc_id’ set but not used
>> vbox_mode.c:581:25: warning: variable ‘vbox_connector’ set but not used
>>
>> Signed-off-by: Paolo Cretaro <paolocretaro@gmail.com>
> 
> Patch looks good to me:
> 
> Acked-by: Hans de Goede <hdegoede@redhat.com>

This is more or less copied and pasted from my reply to Colin King's
patch on the 19th, but it applies equally here.

Looks good to me too.  Not had time to actually apply it yet, but as
said, it looks completely sensible.

Regards
Michael

Acked-by: Michael Thayer <michael.thayer@oracle.com>

> Regards,
> 
> Hans
> 
> 
>> ---
>>   drivers/staging/vboxvideo/vbox_mode.c | 5 -----
>>   1 file changed, 5 deletions(-)
>>
>> diff --git a/drivers/staging/vboxvideo/vbox_mode.c
>> b/drivers/staging/vboxvideo/vbox_mode.c
>> index f2b85f3256fa..a7eea70a3804 100644
>> --- a/drivers/staging/vboxvideo/vbox_mode.c
>> +++ b/drivers/staging/vboxvideo/vbox_mode.c
>> @@ -54,14 +54,12 @@ static void vbox_do_modeset(struct drm_crtc *crtc,
>>       struct vbox_crtc *vbox_crtc = to_vbox_crtc(crtc);
>>       struct vbox_private *vbox;
>>       int width, height, bpp, pitch;
>> -    unsigned int crtc_id;
>>       u16 flags;
>>       s32 x_offset, y_offset;
>>         vbox = crtc->dev->dev_private;
>>       width = mode->hdisplay ? mode->hdisplay : 640;
>>       height = mode->vdisplay ? mode->vdisplay : 480;
>> -    crtc_id = vbox_crtc->crtc_id;
>>       bpp = crtc->enabled ? CRTC_FB(crtc)->format->cpp[0] * 8 : 32;
>>       pitch = crtc->enabled ? CRTC_FB(crtc)->pitches[0] : width * bpp
>> / 8;
>>       x_offset = vbox->single_framebuffer ? crtc->x : vbox_crtc->x_hint;
>> @@ -578,9 +576,6 @@ static int vbox_mode_valid(struct drm_connector
>> *connector,
>>     static void vbox_connector_destroy(struct drm_connector *connector)
>>   {
>> -    struct vbox_connector *vbox_connector;
>> -
>> -    vbox_connector = to_vbox_connector(connector);
>>       drm_connector_unregister(connector);
>>       drm_connector_cleanup(connector);
>>       kfree(connector);
>>

-- 
Michael Thayer | VirtualBox engineer
ORACLE Deutschland B.V. & Co. KG | Werkstr. 24 | D-71384 Weinstadt

ORACLE Deutschland B.V. & Co. KG
Hauptverwaltung: Riesstraße 25, D-80992 München
Registergericht: Amtsgericht München, HRA 95603

Komplementärin: ORACLE Deutschland Verwaltung B.V.
Hertogswetering 163/167, 3543 AS Utrecht, Niederlande Handelsregister
der Handelskammer Midden-Nederland, Nr. 30143697
Geschäftsführer: Alexander van der Ven, Jan Schultheiss, Val Maher

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web