Skip to content

Commit

Permalink
eagle: fix the dancing menu's
Browse files Browse the repository at this point in the history
* M2 users should not have to chase menu's
* rotation is much smoother now
* @kholk @jerpelea can adapt this to the unified kernel
* thanks to @galaxyfreak for simplifying original code
Change-Id: I9ba1a09af764580d292cbd761fda4b5d13df2d96
  • Loading branch information
erikcas committed Feb 20, 2015
1 parent 7602783 commit 99bccb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/video/msm/mdss/mdss_mdp_pipe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ static int mdss_mdp_image_setup(struct mdss_mdp_pipe *pipe,
pipe->mfd->panel_info->pdest == DISPLAY_1)
dst_xy = ((pipe->mixer_left->height -
(pipe->dst.y + pipe->dst.h)) << 16) |
pipe->dst.x;
(pipe->mixer->width - pipe->dst.x - pipe->dst.w);
else
dst_xy = (pipe->dst.y << 16) | pipe->dst.x;
} else
Expand Down

0 comments on commit 99bccb8

Please sign in to comment.