[PATCH] nouveau_drv.c: notify when KMS is disabled

From: Arvydas Sidorenko
Date: Tue May 22 2012 - 02:07:34 EST


On nouveau init whenever VGA fallback is used no notification is given
in dmesg.

Signed-off-by: Arvydas Sidorenko <asido4@xxxxxxxxx>
---
drivers/gpu/drm/nouveau/nouveau_drv.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.c b/drivers/gpu/drm/nouveau/nouveau_drv.c
index 4f2030b..ea90d60 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.c
+++ b/drivers/gpu/drm/nouveau/nouveau_drv.c
@@ -473,8 +473,10 @@ static int __init nouveau_init(void)
nouveau_modeset = 1;
}

- if (!nouveau_modeset)
+ if (!nouveau_modeset) {
+ DRM_INFO("nouveau KMS disabled");
return 0;
+ }

nouveau_register_dsm_handler();
return drm_pci_init(&driver, &nouveau_pci_driver);
--
1.7.8.6

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/