Re: [PATCH] drm: msm: remove unused variable

2016-04-25 Thread Rob Clark
On Sun, Apr 24, 2016 at 6:15 PM, Arnd Bergmann wrote: > On Saturday 16 April 2016 16:49:08 Rob Clark wrote: >> On Sat, Apr 16, 2016 at 4:41 PM, Arnd Bergmann wrote: >> > A recent cleanup removed the only user of the 'kms' variable in >> > msm_preclose(), causing a

Re: [PATCH] drm: msm: remove unused variable

2016-04-25 Thread Rob Clark
On Sun, Apr 24, 2016 at 6:15 PM, Arnd Bergmann wrote: > On Saturday 16 April 2016 16:49:08 Rob Clark wrote: >> On Sat, Apr 16, 2016 at 4:41 PM, Arnd Bergmann wrote: >> > A recent cleanup removed the only user of the 'kms' variable in >> > msm_preclose(), causing a harmless compiler warning: >> >

Re: [PATCH] drm: msm: remove unused variable

2016-04-24 Thread Arnd Bergmann
On Saturday 16 April 2016 16:49:08 Rob Clark wrote: > On Sat, Apr 16, 2016 at 4:41 PM, Arnd Bergmann wrote: > > A recent cleanup removed the only user of the 'kms' variable in > > msm_preclose(), causing a harmless compiler warning: > > > > drivers/gpu/drm/msm/msm_drv.c: In

Re: [PATCH] drm: msm: remove unused variable

2016-04-24 Thread Arnd Bergmann
On Saturday 16 April 2016 16:49:08 Rob Clark wrote: > On Sat, Apr 16, 2016 at 4:41 PM, Arnd Bergmann wrote: > > A recent cleanup removed the only user of the 'kms' variable in > > msm_preclose(), causing a harmless compiler warning: > > > > drivers/gpu/drm/msm/msm_drv.c: In function

Re: [PATCH] drm: msm: remove unused variable

2016-04-16 Thread Rob Clark
On Sat, Apr 16, 2016 at 4:41 PM, Arnd Bergmann wrote: > A recent cleanup removed the only user of the 'kms' variable in > msm_preclose(), causing a harmless compiler warning: > > drivers/gpu/drm/msm/msm_drv.c: In function 'msm_preclose': > drivers/gpu/drm/msm/msm_drv.c:468:18:

Re: [PATCH] drm: msm: remove unused variable

2016-04-16 Thread Rob Clark
On Sat, Apr 16, 2016 at 4:41 PM, Arnd Bergmann wrote: > A recent cleanup removed the only user of the 'kms' variable in > msm_preclose(), causing a harmless compiler warning: > > drivers/gpu/drm/msm/msm_drv.c: In function 'msm_preclose': > drivers/gpu/drm/msm/msm_drv.c:468:18: error: unused

[PATCH] drm: msm: remove unused variable

2016-04-16 Thread Arnd Bergmann
A recent cleanup removed the only user of the 'kms' variable in msm_preclose(), causing a harmless compiler warning: drivers/gpu/drm/msm/msm_drv.c: In function 'msm_preclose': drivers/gpu/drm/msm/msm_drv.c:468:18: error: unused variable 'kms' [-Werror=unused-variable] This removes the variable

[PATCH] drm: msm: remove unused variable

2016-04-16 Thread Arnd Bergmann
A recent cleanup removed the only user of the 'kms' variable in msm_preclose(), causing a harmless compiler warning: drivers/gpu/drm/msm/msm_drv.c: In function 'msm_preclose': drivers/gpu/drm/msm/msm_drv.c:468:18: error: unused variable 'kms' [-Werror=unused-variable] This removes the variable

Re: [PATCH] drm/msm: remove unused variable

2016-02-11 Thread Daniel Vetter
On Thu, Feb 11, 2016 at 10:10:00AM +0100, Arnd Bergmann wrote: > After the drm_device_is_unplugged() was removed, the 'dev' variable is now > unused, and we get a warning for that: > > drivers/gpu/drm/msm/msm_fbdev.c: In function 'msm_fbdev_mmap': > drivers/gpu/drm/msm/msm_fbdev.c:65:21: error:

[PATCH] drm/msm: remove unused variable

2016-02-11 Thread Arnd Bergmann
After the drm_device_is_unplugged() was removed, the 'dev' variable is now unused, and we get a warning for that: drivers/gpu/drm/msm/msm_fbdev.c: In function 'msm_fbdev_mmap': drivers/gpu/drm/msm/msm_fbdev.c:65:21: error: unused variable 'dev' [-Werror=unused-variable] This removes the

[PATCH] drm/msm: remove unused variable

2016-02-11 Thread Arnd Bergmann
After the drm_device_is_unplugged() was removed, the 'dev' variable is now unused, and we get a warning for that: drivers/gpu/drm/msm/msm_fbdev.c: In function 'msm_fbdev_mmap': drivers/gpu/drm/msm/msm_fbdev.c:65:21: error: unused variable 'dev' [-Werror=unused-variable] This removes the

Re: [PATCH] drm/msm: remove unused variable

2016-02-11 Thread Daniel Vetter
On Thu, Feb 11, 2016 at 10:10:00AM +0100, Arnd Bergmann wrote: > After the drm_device_is_unplugged() was removed, the 'dev' variable is now > unused, and we get a warning for that: > > drivers/gpu/drm/msm/msm_fbdev.c: In function 'msm_fbdev_mmap': > drivers/gpu/drm/msm/msm_fbdev.c:65:21: error: