diff options
author | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-08-06 13:52:54 +0800 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2009-08-27 05:30:00 -0700 |
commit | b87f31210b56504edf41649c6088197d9ffdb5b9 (patch) | |
tree | bd66c0e235d58fd319d3d0df7fb054f1af9d3c10 | |
parent | 08882e9e1918179ee117f59fee120fbca9eadb77 (diff) |
Fix typo in bios_reader for invalid pointer cast
Fixed locally for af45482a52999b52bf41468c458808e30c100e35, but pushed
wrong commit.
(cherry picked from commit 62494407e529cfa68529b7267155a12d75418f21)
-rw-r--r-- | src/bios_reader/bios_reader.c | 2 |
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) |