| author | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-08-06 05:52:54 (GMT) |
|---|---|---|
| committer | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-08-06 05:52:54 (GMT) |
| commit | 62494407e529cfa68529b7267155a12d75418f21 (patch) (side-by-side diff) | |
| tree | e2caae2e927641b12b76591af636b666685d337e | |
| parent | 79b6851148574419389ac8055b0c31b8bdac3ab3 (diff) | |
| download | xf86-video-intel-62494407e529cfa68529b7267155a12d75418f21.zip xf86-video-intel-62494407e529cfa68529b7267155a12d75418f21.tar.gz | |
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.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 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) |
