xf86-video-intel: src/bios_reader/bios_reader.c

Zhenyu Wang zhen at kemper.freedesktop.org
Wed Aug 5 22:54:12 PDT 2009


 src/bios_reader/bios_reader.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 62494407e529cfa68529b7267155a12d75418f21
Author: Zhenyu Wang <zhenyuw at linux.intel.com>
Date:   Thu Aug 6 13:52:54 2009 +0800

    Fix typo in bios_reader for invalid pointer cast
    
    Fixed locally for af45482a52999b52bf41468c458808e30c100e35, but pushed
    wrong commit.

diff --git a/src/bios_reader/bios_reader.c b/src/bios_reader/bios_reader.c
index 35b144c..3b880a7 100644
--- a/src/bios_reader/bios_reader.c
+++ b/src/bios_reader/bios_reader.c
@@ -347,7 +347,7 @@ static void dump_lvds_data(void)
 	uint8_t *lfp_data_ptr = (uint8_t *)lvds_data->data + lfp_data_size * i;
 	uint8_t *timing_data = lfp_data_ptr + dvo_offset;
 	struct bdb_lvds_lfp_data_entry *lfp_data =
-			(struct bdb_lvds_flp_data_entry *)lfp_data_ptr;
+			(struct bdb_lvds_lfp_data_entry *)lfp_data_ptr;
 	char marker;
 
 	if (i == panel_type)


More information about the xorg-commit mailing list