Colin King
2017-Jun-07 11:35 UTC
[Nouveau] [PATCH][drm-next] drm/nouveau: fix non-ANSI function declaration of nouveau_pmops_runtime
From: Colin Ian King <colin.king at canonical.com>
Give function nouveau_pmops_runtime a void argument to make it an ANSI
function declaration. Fixes sparse warning:
warning: non-ANSI function declaration of function
'nouveau_pmops_runtime'
Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
drivers/gpu/drm/nouveau/nouveau_drm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c
b/drivers/gpu/drm/nouveau/nouveau_drm.c
index 7acd1cf8c5a6..90757af9bc73 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drm.c
+++ b/drivers/gpu/drm/nouveau/nouveau_drm.c
@@ -727,7 +727,7 @@ nouveau_pmops_thaw(struct device *dev)
}
bool
-nouveau_pmops_runtime()
+nouveau_pmops_runtime(void)
{
if (nouveau_runtime_pm == -1)
return nouveau_is_optimus() || nouveau_is_v1_dsm();
--
2.11.0
Possibly Parallel Threads
- [PATCH] drm/nouveau: use proper prototype in nouveau_pmops_runtime() definition
- [PATCH] drm: compute runpm on load, don't register autosuspend for non-runpm
- [PATCH] drm: compute runpm on load, don't register autosuspend for non-runpm
- [PATCH RFC] nouveau: Add support for Gmux _DSM method
- [PATCH 3/5] drm/nouveau: Don't register Thunderbolt eGPU with vga_switcheroo
