summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Dirsch <sndirsch@suse.de>2014-03-18 12:00:12 +0100
committerStefan Dirsch <sndirsch@suse.de>2014-03-18 12:00:12 +0100
commitf4fa79c12c14854d786dc0427f5a40061e006495 (patch)
tree8a6a3bb68951d0e098ca26d9c3aca2fa2bc8a462
parente54f2fdb7a44ffb40b3b4c2266843c38223c1f07 (diff)
Fixed driver name in error message about KMS active.
Seems some code came from cirrus driver by copy & paste. Fixed this in error message about device already in use by KMS module. Signed-off-by: Stefan Dirsch <sndirsch@suse.de> Reviewed-by: Dave Airlie <airlied@redhat.com>
-rw-r--r--src/ast_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast_driver.c b/src/ast_driver.c
index 677c170..3f81558 100644
--- a/src/ast_driver.c
+++ b/src/ast_driver.c
@@ -312,7 +312,7 @@ ASTProbe(DriverPtr drv, int flags)
"ast: The PCI device 0x%x at %2.2d@%2.2d:%2.2d:%1.1d has a kernel module claiming it.\n",
pPci->device_id, pPci->bus, pPci->domain, pPci->dev, pPci->func);
xf86DrvMsg(0, X_ERROR,
- "cirrus: This driver cannot operate until it has been unloaded.\n");
+ "ast: This driver cannot operate until it has been unloaded.\n");
xf86UnclaimPciSlot(pPci, devSections[0]);
free(devSections);
return FALSE;