Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 17662
b: refs/heads/master
c: a39bc34
h: refs/heads/master
v: v3
  • Loading branch information
Antonino A. Daplas authored and Linus Torvalds committed Jan 10, 2006
1 parent 2e640b8 commit dcee63c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 19 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: c5eec03f314e1406829d9683284673203b91b9b8
refs/heads/master: a39bc34ea8f042e090ade124726ae5a3fd1a51f8
27 changes: 11 additions & 16 deletions trunk/drivers/video/console/fbcon.c
Original file line number Diff line number Diff line change
Expand Up @@ -687,13 +687,12 @@ static int con2fb_acquire_newinfo(struct vc_data *vc, struct fb_info *info,
err = -ENODEV;

if (!err) {
ops = kmalloc(sizeof(struct fbcon_ops), GFP_KERNEL);
ops = kzalloc(sizeof(struct fbcon_ops), GFP_KERNEL);
if (!ops)
err = -ENOMEM;
}

if (!err) {
memset(ops, 0, sizeof(struct fbcon_ops));
info->fbcon_par = ops;
set_blitting_type(vc, info);
}
Expand Down Expand Up @@ -919,13 +918,12 @@ static const char *fbcon_startup(void)
return NULL;
}

ops = kmalloc(sizeof(struct fbcon_ops), GFP_KERNEL);
ops = kzalloc(sizeof(struct fbcon_ops), GFP_KERNEL);
if (!ops) {
module_put(owner);
return NULL;
}

memset(ops, 0, sizeof(struct fbcon_ops));
ops->currcon = -1;
ops->graphics = 1;
ops->cur_rotate = -1;
Expand Down Expand Up @@ -1408,16 +1406,13 @@ static __inline__ void ypan_up_redraw(struct vc_data *vc, int t, int count)
struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
struct fbcon_ops *ops = info->fbcon_par;
struct display *p = &fb_display[vc->vc_num];
int redraw = 0;

p->yscroll += count;

if (p->yscroll > p->vrows - vc->vc_rows) {
p->yscroll -= p->vrows - vc->vc_rows;
redraw = 1;
}

if (redraw)
fbcon_redraw_move(vc, p, t + count, vc->vc_rows - count, t);
}

ops->var.xoffset = 0;
ops->var.yoffset = p->yscroll * vc->vc_font.height;
Expand Down Expand Up @@ -1459,16 +1454,13 @@ static __inline__ void ypan_down_redraw(struct vc_data *vc, int t, int count)
struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
struct fbcon_ops *ops = info->fbcon_par;
struct display *p = &fb_display[vc->vc_num];
int redraw = 0;

p->yscroll -= count;

if (p->yscroll < 0) {
p->yscroll += p->vrows - vc->vc_rows;
redraw = 1;
}

if (redraw)
fbcon_redraw_move(vc, p, t, vc->vc_rows - count, t + count);
}

ops->var.xoffset = 0;
ops->var.yoffset = p->yscroll * vc->vc_font.height;
Expand Down Expand Up @@ -2105,8 +2097,11 @@ static int fbcon_switch(struct vc_data *vc)
info->flags & FBINFO_MISC_ALWAYS_SETPAR)) {
if (info->fbops->fb_set_par)
info->fbops->fb_set_par(info);
fbcon_del_cursor_timer(old_info);
fbcon_add_cursor_timer(info);

if (old_info != info) {
fbcon_del_cursor_timer(old_info);
fbcon_add_cursor_timer(info);
}
}

set_blitting_type(vc, info);
Expand Down
2 changes: 0 additions & 2 deletions trunk/drivers/video/console/fbcon_rotate.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
#ifndef _FBCON_ROTATE_H
#define _FBCON_ROTATE_H

#define FNTCHARCNT(fd) (((int *)(fd))[-3])

#define GETVYRES(s,i) ({ \
(s == SCROLL_REDRAW || s == SCROLL_MOVE) ? \
(i)->var.yres : (i)->var.yres_virtual; })
Expand Down

0 comments on commit dcee63c

Please sign in to comment.