From: Russell King Date: Thu, 28 May 2015 09:36:27 +0000 (+0100) Subject: drm: clean up drm_mm debugfs output X-Git-Tag: omap-for-v4.2/fixes-rc1^2~17^2~46 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f15791c28af9b2114cf3422c48aba6701d91df3;p=pandora-kernel.git drm: clean up drm_mm debugfs output The drm_mm debugfs output is difficult to read as two different formats are used for the addresses: 0x00000080000000-0x0000008000b000: 45056: used 0x8000b000-0x80016000: 45056: free 0x00000080016000-0x0000008001b000: 20480: used 0x8001b000-0x817a1000: 24666112: free 0x000000817a1000-0x000000817a8000: 28672: used 0x000000817a8000-0x00000081ba8000: 4194304: used Fix this by using %#018llx for all addresses, thus making the output: 0x0000000080000000-0x000000008000b000: 45056: used 0x000000008000b000-0x0000000080016000: 45056: free 0x0000000080016000-0x000000008001b000: 20480: used 0x000000008001b000-0x00000000817a1000: 24666112: free 0x00000000817a1000-0x00000000817a8000: 28672: used 0x00000000817a8000-0x0000000081ba8000: 4194304: used Signed-off-by: Russell King Reviewed-by: Alex Deucher Signed-off-by: Dave Airlie --- Reading git-diff-tree failed