Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 195428
b: refs/heads/master
c: 993e33b
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed May 20, 2010
1 parent af2a00e commit aa58f7c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 7d7917bcbd9bdc61e7daa46ce74f7032aa4bfb3d
refs/heads/master: 993e33b032cfc072898bab78b8fa8b21bc666c7e
8 changes: 4 additions & 4 deletions trunk/drivers/usb/misc/sisusbvga/sisusb_con.c
Original file line number Diff line number Diff line change
Expand Up @@ -1187,9 +1187,9 @@ sisusbcon_do_font_op(struct sisusb_usb_data *sisusb, int set, int slot,
* And so is the hi_font_mask.
*/
for (i = 0; i < MAX_NR_CONSOLES; i++) {
struct vc_data *c = vc_cons[i].d;
if (c && c->vc_sw == &sisusb_con)
c->vc_hi_font_mask = ch512 ? 0x0800 : 0;
struct vc_data *d = vc_cons[i].d;
if (d && d->vc_sw == &sisusb_con)
d->vc_hi_font_mask = ch512 ? 0x0800 : 0;
}

sisusb->current_font_512 = ch512;
Expand Down Expand Up @@ -1249,7 +1249,7 @@ sisusbcon_do_font_op(struct sisusb_usb_data *sisusb, int set, int slot,
mutex_unlock(&sisusb->lock);

if (dorecalc && c) {
int i, rows = c->vc_scan_lines / fh;
int rows = c->vc_scan_lines / fh;

/* Now adjust our consoles' size */

Expand Down

0 comments on commit aa58f7c

Please sign in to comment.