diff options
author | Jesse Hall <jessehall@google.com> | 2012-09-06 17:15:27 -0700 |
---|---|---|
committer | Jesse Hall <jessehall@google.com> | 2012-09-12 09:38:28 -0700 |
commit | 3d6b69f0a0fb325443ef8c2987c16af1f8618d3e (patch) | |
tree | c0acceeb5d4118f2fd06ac20920035019cd3a470 /hwc | |
parent | c5d2fc3ce62f91306fe342d3aa2bfe37f6b51ef6 (diff) | |
download | hardware_ti_omap4xxx-3d6b69f0a0fb325443ef8c2987c16af1f8618d3e.zip hardware_ti_omap4xxx-3d6b69f0a0fb325443ef8c2987c16af1f8618d3e.tar.gz hardware_ti_omap4xxx-3d6b69f0a0fb325443ef8c2987c16af1f8618d3e.tar.bz2 |
HWC field was renamed
Change-Id: If08258776db427c45d9ba70cfa79f4d290398ca6
Diffstat (limited to 'hwc')
-rw-r--r-- | hwc/hwc.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1194,9 +1194,9 @@ static void check_sync_fds(size_t numDisplays, hwc_display_contents_1_t** displa unsigned int i, j; for (i = 0; i < numDisplays; i++) { hwc_display_contents_1_t* list = displays[i]; - if (list->flipFenceFd >= 0) { - ALOGW("flipFenceFd[%u] was %d", i, list->flipFenceFd); - list->flipFenceFd = -1; + if (list->retireFenceFd >= 0) { + ALOGW("retireFenceFd[%u] was %d", i, list->retireFenceFd); + list->retireFenceFd = -1; } for (j = 0; j < list->numHwLayers; j++) { |