Commit 01d01ba9 authored by Dave Airlie's avatar Dave Airlie

drm/mm: fixup typo in debug functions.

Free and used were reversed.
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 884840aa
...@@ -386,7 +386,7 @@ int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm) ...@@ -386,7 +386,7 @@ int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm)
else else
total_used += entry->size; total_used += entry->size;
} }
seq_printf(m, "total: %d, used %d free %d\n", total, total_free, total_used); seq_printf(m, "total: %d, used %d free %d\n", total, total_used, total_free);
return 0; return 0;
} }
EXPORT_SYMBOL(drm_mm_dump_table); EXPORT_SYMBOL(drm_mm_dump_table);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment