summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Hopf <mhopf@suse.de>2009-11-11 16:04:28 +0100
committerMatthias Hopf <mhopf@suse.de>2009-11-11 16:04:28 +0100
commitd0b936dbfc165fe441c4af6d429332234fa8b18e (patch)
treeecfbbea9325dd0ee95cd2bb31bd87bb25e935e92
parent5a01ea3d79909268a6febf428ca65f30626c3bcd (diff)
Change wording for amount of mapped memory.
-rw-r--r--src/rhd_driver.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rhd_driver.c b/src/rhd_driver.c
index f08c097..2d7f803 100644
--- a/src/rhd_driver.c
+++ b/src/rhd_driver.c
@@ -1886,8 +1886,9 @@ rhdGetVideoRamSize(RHDPtr rhdPtr)
if (RamSize > BARSize) {
xf86DrvMsg(rhdPtr->scrnIndex, X_INFO, "The detected amount of videoram"
" exceeds the PCI BAR aperture.\n");
- xf86DrvMsg(rhdPtr->scrnIndex, X_INFO, "Using only %dkB of the total "
- "%dkB.\n", (int) BARSize, (int) RamSize);
+ xf86DrvMsg(rhdPtr->scrnIndex, X_INFO, "Mapping only %dkB of the total "
+ "%dkB, remaining memory is reserved for GPU.\n",
+ (int) BARSize, (int) RamSize);
return BARSize;
} else
return RamSize;