Displaying 1 result from an estimated 1 matches for "bb6409b".
Did you mean:
b64089b
2014 Mar 10
1
[PATCH] drm/nouveau: print a message when KMS is disabled
...veau will now announce in the logs that it won't load.
(Adding Nouveau list as recipient.)
drivers/gpu/drm/nouveau/nouveau_drm.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c
index 89c484d..bb6409b 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drm.c
+++ b/drivers/gpu/drm/nouveau/nouveau_drm.c
@@ -984,8 +984,10 @@ nouveau_drm_init(void)
#endif
}
- if (!nouveau_modeset)
+ if (!nouveau_modeset) {
+ DRM_INFO("Nouveau will not load as KMS was disabled.\n");
return 0;
+ }
nouv...