summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-11-05 18:58:45 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-11-05 18:58:45 +0000
commit26ddfaf4fcaff545a6a1e4075ba8fbf317c40f51 (patch)
tree4da409d4e2334a1e0824d357e67c6e632cefaa18
parentd8bfd0713bc5fb656b6ca0b3966a2847877de564 (diff)
Don't use gcc-only __FUNCTION__ macro.
-rw-r--r--src/via_mode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/via_mode.c b/src/via_mode.c
index e47b2d3..2b2b2d4 100644
--- a/src/via_mode.c
+++ b/src/via_mode.c
@@ -783,8 +783,8 @@ ViaGetMemoryBandwidth(ScrnInfoPtr pScrn)
case VIA_PM800:
return ViaBandwidthTable[VIA_BW_PM800].Bandwidth[pVia->MemClk];
default:
- xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "%s: Unknown Chipset.\n",
- __FUNCTION__);
+ xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
+ "ViaGetMemoryBandwidth: Unknown Chipset.\n");
return VIA_BW_MIN;
}
}