Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 164847
b: refs/heads/master
c: d63870d
h: refs/heads/master
i:
  164845: 690e5c5
  164843: 436f6bc
  164839: a21340c
  164831: efe95cb
v: v3
  • Loading branch information
Roel Kluin authored and Linus Torvalds committed Sep 23, 2009
1 parent fe29dcc commit 38eb695
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2f93e8f4822fdd48fa9c4c901eea87ab1c902f87
refs/heads/master: d63870db3c41086d7f13ec8b41def4331db32327
4 changes: 2 additions & 2 deletions trunk/drivers/video/sis/sis_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -698,8 +698,8 @@ sisfb_search_refresh_rate(struct sis_video_info *ivideo, unsigned int rate, int
rate, sisfb_vrate[i].refresh);
ivideo->rate_idx = sisfb_vrate[i].idx;
ivideo->refresh_rate = sisfb_vrate[i].refresh;
} else if(((rate - sisfb_vrate[i-1].refresh) <= 2)
&& (sisfb_vrate[i].idx != 1)) {
} else if((sisfb_vrate[i].idx != 1) &&
((rate - sisfb_vrate[i-1].refresh) <= 2)) {
DPRINTK("sisfb: Adjusting rate from %d down to %d\n",
rate, sisfb_vrate[i-1].refresh);
ivideo->rate_idx = sisfb_vrate[i-1].idx;
Expand Down

0 comments on commit 38eb695

Please sign in to comment.