Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 268091
b: refs/heads/master
c: dfbdf80
h: refs/heads/master
i:
  268089: 677e1f7
  268087: f28c445
v: v3
  • Loading branch information
Aaro Koskinen authored and Greg Kroah-Hartman committed Sep 6, 2011
1 parent 6886854 commit 76a701a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 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: 009adf2d4be9479004e41fd9b49a6136498f256b
refs/heads/master: dfbdf805798bb56acca75bdf7b1cad7818772dba
21 changes: 11 additions & 10 deletions trunk/drivers/staging/xgifb/XGI_main_26.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@

#define XGIFB_ROM_SIZE 65536

static char *mode;
static int vesa;

/* -------------------- Macro definitions ---------------------------- */

#undef XGIFBDEBUG
Expand Down Expand Up @@ -1959,9 +1962,9 @@ static int __init XGIfb_setup(char *options)
continue;

if (!strncmp(this_opt, "mode:", 5)) {
XGIfb_search_mode(this_opt + 5);
mode = this_opt + 5;
} else if (!strncmp(this_opt, "vesa:", 5)) {
XGIfb_search_vesamode(xgifb_optval(this_opt, 5));
vesa = xgifb_optval(this_opt, 5);
} else if (!strncmp(this_opt, "vrate:", 6)) {
xgi_video_info.refresh_rate = xgifb_optval(this_opt, 6);
} else if (!strncmp(this_opt, "rate:", 5)) {
Expand All @@ -1987,7 +1990,7 @@ static int __init XGIfb_setup(char *options)
} else if (!strncmp(this_opt, "userom:", 7)) {
XGIfb_userom = xgifb_optval(this_opt, 7);
} else {
XGIfb_search_mode(this_opt);
mode = this_opt;
}
}
return 0;
Expand Down Expand Up @@ -2308,6 +2311,11 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,

}

if (mode)
XGIfb_search_mode(mode);
else if (vesa != -1)
XGIfb_search_vesamode(vesa);

if (xgifb_mode_idx >= 0)
xgifb_mode_idx = XGIfb_validate_mode(xgifb_mode_idx);

Expand Down Expand Up @@ -2513,9 +2521,6 @@ module_init(xgifb_init);

#ifdef MODULE

static char *mode;
static int vesa;

MODULE_DESCRIPTION("Z7 Z9 Z9S Z11 framebuffer device driver");
MODULE_LICENSE("GPL");
MODULE_AUTHOR("XGITECH , Others");
Expand All @@ -2541,10 +2546,6 @@ MODULE_PARM_DESC(filter,
static int __init xgifb_init_module(void)
{
printk("\nXGIfb_init_module");
if (mode)
XGIfb_search_mode(mode);
else if (vesa != -1)
XGIfb_search_vesamode(vesa);

return xgifb_init();
}
Expand Down

0 comments on commit 76a701a

Please sign in to comment.