Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48049
b: refs/heads/master
c: 36f7140
h: refs/heads/master
i:
  48047: 9b30750
v: v3
  • Loading branch information
Maciej W. Rozycki authored and Linus Torvalds committed Feb 12, 2007
1 parent c0b689e commit e0972df
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: ee9a25e5df81f4392439055c28989dfd4b18d894
refs/heads/master: 36f71405e63f3d1e4c2a8dd98523820bbca8e078
4 changes: 2 additions & 2 deletions trunk/drivers/video/tgafb.c
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ copyarea_line_8bpp(struct fb_info *info, u32 dy, u32 sy,

n64 = (height * width) / 64;

if (dy < sy) {
if (sy < dy) {
spos = (sy + height) * width;
dpos = (dy + height) * width;

Expand Down Expand Up @@ -933,7 +933,7 @@ copyarea_line_32bpp(struct fb_info *info, u32 dy, u32 sy,

n16 = (height * width) / 16;

if (dy < sy) {
if (sy < dy) {
src = tga_fb + (sy + height) * width * 4;
dst = tga_fb + (dy + height) * width * 4;

Expand Down

0 comments on commit e0972df

Please sign in to comment.