compositor-fbdev: Remove bizarre division by sizeof
Really not sure why this was even here - it worked because we were dividing by 1. Signed-off-by: Derek Foreman <derekf@osg.samsung.com> Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
This commit is contained in:
committed by
Pekka Paalanen
parent
3f32a13acd
commit
617933840b
@@ -337,7 +337,7 @@ fbdev_query_screen_info(struct fbdev_output *output, int fd,
|
|||||||
|
|
||||||
info->buffer_length = fixinfo.smem_len;
|
info->buffer_length = fixinfo.smem_len;
|
||||||
info->line_length = fixinfo.line_length;
|
info->line_length = fixinfo.line_length;
|
||||||
strncpy(info->id, fixinfo.id, sizeof(info->id) / sizeof(*info->id));
|
strncpy(info->id, fixinfo.id, sizeof(info->id));
|
||||||
|
|
||||||
info->pixel_format = calculate_pixman_format(&varinfo, &fixinfo);
|
info->pixel_format = calculate_pixman_format(&varinfo, &fixinfo);
|
||||||
info->refresh_rate = calculate_refresh_rate(&varinfo);
|
info->refresh_rate = calculate_refresh_rate(&varinfo);
|
||||||
|
|||||||
Reference in New Issue
Block a user