diff mbox

ACPI video: show _DOD element in hexadecimal format

Message ID 1308280790.17353.2.camel@rui (mailing list archive)
State New, archived
Headers show

Commit Message

Zhang Rui June 17, 2011, 3:19 a.m. UTC
video-1250 [4140343344] [-14] video_device_enumerate: dod element[0] = -2147417856
video-1250 [4140343344] [-14] video_device_enumerate: dod element[1] = -2147417088
...

As each element of _DOD method stands for a 32-bit device attribute
of a video output device, print it in hexadecimal format.

Signed-off-by: Zhang Rui <rui.zhang@intel.com>
---
 drivers/acpi/video.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

Index: linux-2.6/drivers/acpi/video.c
===================================================================
--- linux-2.6.orig/drivers/acpi/video.c
+++ linux-2.6/drivers/acpi/video.c
@@ -1179,7 +1179,7 @@  static int acpi_video_device_enumerate(s
 
 		active_list[count].value.int_val = obj->integer.value;
 		active_list[count].bind_info = NULL;
-		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
+		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = 0x%x\n", i,
 				  (int)obj->integer.value));
 		count++;
 	}