diff options
author | dumbbell <dumbbell@FreeBSD.org> | 2013-03-23 20:46:47 +0000 |
---|---|---|
committer | dumbbell <dumbbell@FreeBSD.org> | 2013-03-23 20:46:47 +0000 |
commit | 93bfdfa5b734b802da6b12fbcec9197ef596ae73 (patch) | |
tree | 1524810a2310d8338248125e82fd61dbd839713f /sys/dev | |
parent | e637df4cdfe84789f1754b21a8864568e3acb040 (diff) | |
download | FreeBSD-src-93bfdfa5b734b802da6b12fbcec9197ef596ae73.zip FreeBSD-src-93bfdfa5b734b802da6b12fbcec9197ef596ae73.tar.gz |
drm/ttm: Fix a typo: s/pTTM]/[TTM]/
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/drm2/ttm/ttm_memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/drm2/ttm/ttm_memory.c b/sys/dev/drm2/ttm/ttm_memory.c index dc85656..a7411cf 100644 --- a/sys/dev/drm2/ttm/ttm_memory.c +++ b/sys/dev/drm2/ttm/ttm_memory.c @@ -51,7 +51,7 @@ MALLOC_DEFINE(M_TTM_ZONE, "ttm_zone", "TTM Zone"); static void ttm_mem_zone_kobj_release(struct ttm_mem_zone *zone) { - printf("pTTM] Zone %7s: Used memory at exit: %llu kiB\n", + printf("[TTM] Zone %7s: Used memory at exit: %llu kiB\n", zone->name, (unsigned long long)zone->used_mem >> 10); free(zone, M_TTM_ZONE); } |