Skip to content

Commit

Permalink
Staging: xgifb: Remove XGIFAIL() macro and its calls.
Browse files Browse the repository at this point in the history
XGIFAIL() prints a message and returns a value, but it's used only in one
place. Better remove it and replace the call with the macro content.

Signed-off-by: Miguel Gómez <magomez@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Miguel Gómez authored and Greg Kroah-Hartman committed Jun 19, 2012
1 parent 96cd1f8 commit 47cee13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 0 additions & 2 deletions drivers/staging/xgifb/XGI_main.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
#include "XGIfb.h"
#include "vb_def.h"

#define XGIFAIL(x) do { printk(x "\n"); return -EINVAL; } while (0)

#ifndef PCI_DEVICE_ID_XGI_42
#define PCI_DEVICE_ID_XGI_42 0x042
#endif
Expand Down
6 changes: 4 additions & 2 deletions drivers/staging/xgifb/XGI_main_26.c
Original file line number Diff line number Diff line change
Expand Up @@ -1376,8 +1376,10 @@ static int XGIfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
vtotal = var->upper_margin + var->yres + var->lower_margin
+ var->vsync_len;

if (!(htotal) || !(vtotal))
XGIFAIL("XGIfb: no valid timing data");
if (!(htotal) || !(vtotal)) {
pr_debug("XGIfb: no valid timing data\n");
return -EINVAL;
}

if (var->pixclock && htotal && vtotal) {
drate = 1000000000 / var->pixclock;
Expand Down

0 comments on commit 47cee13

Please sign in to comment.