summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhenyu Wang <zhenyuw@linux.intel.com>2009-08-06 13:52:54 +0800
committerZhenyu Wang <zhenyuw@linux.intel.com>2009-08-06 13:52:54 +0800
commit62494407e529cfa68529b7267155a12d75418f21 (patch)
treee2caae2e927641b12b76591af636b666685d337e
parent79b6851148574419389ac8055b0c31b8bdac3ab3 (diff)
Fix typo in bios_reader for invalid pointer cast
Fixed locally for af45482a52999b52bf41468c458808e30c100e35, but pushed wrong commit.
-rw-r--r--src/bios_reader/bios_reader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bios_reader/bios_reader.c b/src/bios_reader/bios_reader.c
index 35b144cb..3b880a7d 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)