]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
drm/nouveau: use proper prototype in nouveau_pmops_runtime() definition
authorArnd Bergmann <arnd@arndb.de>
Fri, 9 Jun 2017 10:38:33 +0000 (12:38 +0200)
committerBen Skeggs <bskeggs@redhat.com>
Fri, 16 Jun 2017 04:05:04 +0000 (14:05 +1000)
commit5499473c86503bb8e307ff7b554643a99a9478c2
tree4cd58969f75619e856c8fd777bd87a00ebae3710
parent876ea7be6a71614ef80c05037350a2ff986e3a80
drm/nouveau: use proper prototype in nouveau_pmops_runtime() definition

There is a prototype for this function in the header, but the function
itself lacks a 'void' in the argument list, causing a harmless warning
when building with 'make W=1':

drivers/gpu/drm/nouveau/nouveau_drm.c: In function 'nouveau_pmops_runtime':
drivers/gpu/drm/nouveau/nouveau_drm.c:730:1: error: old-style function definition [-Werror=old-style-definition]

Fixes: 321f5c5f2c49 ("drm/nouveau: replace multiple open-coded runpm support checks with function")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nouveau_drm.c