Przeglądaj źródła

drm/radeon: print the supported atpx function mask

Print the supported functions mask in addition to
the version.  This is useful in debugging PX
problems since we can see what functions are available.

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
Alex Deucher 11 lat temu
rodzic
commit
9f050c7f97
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      drivers/gpu/drm/radeon/radeon_atpx_handler.c

+ 2 - 1
drivers/gpu/drm/radeon/radeon_atpx_handler.c

@@ -219,7 +219,8 @@ static int radeon_atpx_verify_interface(struct radeon_atpx *atpx)
 	memcpy(&output, info->buffer.pointer, size);
 
 	/* TODO: check version? */
-	printk("ATPX version %u\n", output.version);
+	printk("ATPX version %u, functions 0x%08x\n",
+	       output.version, output.function_bits);
 
 	radeon_atpx_parse_functions(&atpx->functions, output.function_bits);