Commit 27fa159b authored by Michel von Czettritz's avatar Michel von Czettritz Committed by Greg Kroah-Hartman

staging: sm750: fix whitespaces around pointers

This patch fixes checkpatch.pl errors:
- ERROR: "foo * bar" should be "foo *bar"
- ERROR: "foo* bar" should be "foo *bar"
Signed-off-by: default avatarMichel von Czettritz <michel.von.czettritz@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5ace4e10
...@@ -50,11 +50,12 @@ static int g_noaccel; ...@@ -50,11 +50,12 @@ static int g_noaccel;
#ifdef CONFIG_MTRR #ifdef CONFIG_MTRR
static int g_nomtrr; static int g_nomtrr;
#endif #endif
static const char * g_fbmode[] = {NULL, NULL}; static const char *g_fbmode[] = {NULL, NULL};
static const char * g_def_fbmode = "800x600-16@60"; static const char *g_def_fbmode = "800x600-16@60";
static char * g_settings = NULL; static char *g_settings = NULL;
static int g_dualview; static int g_dualview;
static char * g_option = NULL; static char *g_option = NULL;
static const struct fb_videomode lynx750_ext[] = { static const struct fb_videomode lynx750_ext[] = {
/* 1024x600-60 VESA [1.71:1] */ /* 1024x600-60 VESA [1.71:1] */
...@@ -113,11 +114,11 @@ static const struct fb_videomode lynx750_ext[] = { ...@@ -113,11 +114,11 @@ static const struct fb_videomode lynx750_ext[] = {
/* no hardware cursor supported under version 2.6.10, kernel bug */ /* no hardware cursor supported under version 2.6.10, kernel bug */
static int lynxfb_ops_cursor(struct fb_info* info, struct fb_cursor* fbcursor) static int lynxfb_ops_cursor(struct fb_info *info, struct fb_cursor *fbcursor)
{ {
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynxfb_crtc * crtc; struct lynxfb_crtc *crtc;
struct lynx_cursor * cursor; struct lynx_cursor *cursor;
par = info->par; par = info->par;
crtc = &par->crtc; crtc = &par->crtc;
...@@ -168,10 +169,10 @@ static int lynxfb_ops_cursor(struct fb_info* info, struct fb_cursor* fbcursor) ...@@ -168,10 +169,10 @@ static int lynxfb_ops_cursor(struct fb_info* info, struct fb_cursor* fbcursor)
return 0; return 0;
} }
static void lynxfb_ops_fillrect(struct fb_info* info, const struct fb_fillrect* region) static void lynxfb_ops_fillrect(struct fb_info *info, const struct fb_fillrect *region)
{ {
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynx_share * share; struct lynx_share *share;
unsigned int base, pitch, Bpp, rop; unsigned int base, pitch, Bpp, rop;
u32 color; u32 color;
...@@ -207,10 +208,10 @@ static void lynxfb_ops_fillrect(struct fb_info* info, const struct fb_fillrect* ...@@ -207,10 +208,10 @@ static void lynxfb_ops_fillrect(struct fb_info* info, const struct fb_fillrect*
spin_unlock(&share->slock); spin_unlock(&share->slock);
} }
static void lynxfb_ops_copyarea(struct fb_info * info, const struct fb_copyarea * region) static void lynxfb_ops_copyarea(struct fb_info *info, const struct fb_copyarea *region)
{ {
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynx_share * share; struct lynx_share *share;
unsigned int base, pitch, Bpp; unsigned int base, pitch, Bpp;
par = info->par; par = info->par;
...@@ -237,12 +238,12 @@ static void lynxfb_ops_copyarea(struct fb_info * info, const struct fb_copyarea ...@@ -237,12 +238,12 @@ static void lynxfb_ops_copyarea(struct fb_info * info, const struct fb_copyarea
spin_unlock(&share->slock); spin_unlock(&share->slock);
} }
static void lynxfb_ops_imageblit(struct fb_info*info, const struct fb_image* image) static void lynxfb_ops_imageblit(struct fb_info *info, const struct fb_image *image)
{ {
unsigned int base, pitch, Bpp; unsigned int base, pitch, Bpp;
unsigned int fgcol, bgcol; unsigned int fgcol, bgcol;
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynx_share * share; struct lynx_share *share;
par = info->par; par = info->par;
share = par->share; share = par->share;
...@@ -285,8 +286,8 @@ static void lynxfb_ops_imageblit(struct fb_info*info, const struct fb_image* ima ...@@ -285,8 +286,8 @@ static void lynxfb_ops_imageblit(struct fb_info*info, const struct fb_image* ima
static int lynxfb_ops_pan_display(struct fb_var_screeninfo *var, static int lynxfb_ops_pan_display(struct fb_var_screeninfo *var,
struct fb_info *info) struct fb_info *info)
{ {
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynxfb_crtc * crtc; struct lynxfb_crtc *crtc;
int ret; int ret;
...@@ -301,14 +302,14 @@ static int lynxfb_ops_pan_display(struct fb_var_screeninfo *var, ...@@ -301,14 +302,14 @@ static int lynxfb_ops_pan_display(struct fb_var_screeninfo *var,
return ret; return ret;
} }
static int lynxfb_ops_set_par(struct fb_info * info) static int lynxfb_ops_set_par(struct fb_info *info)
{ {
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynx_share * share; struct lynx_share *share;
struct lynxfb_crtc * crtc; struct lynxfb_crtc *crtc;
struct lynxfb_output * output; struct lynxfb_output *output;
struct fb_var_screeninfo * var; struct fb_var_screeninfo *var;
struct fb_fix_screeninfo * fix; struct fb_fix_screeninfo *fix;
int ret; int ret;
unsigned int line_length; unsigned int line_length;
...@@ -383,7 +384,7 @@ static int lynxfb_ops_set_par(struct fb_info * info) ...@@ -383,7 +384,7 @@ static int lynxfb_ops_set_par(struct fb_info * info)
return ret; return ret;
} }
static inline unsigned int chan_to_field(unsigned int chan, struct fb_bitfield * bf) static inline unsigned int chan_to_field(unsigned int chan, struct fb_bitfield *bf)
{ {
chan &= 0xffff; chan &= 0xffff;
chan >>= 16 - bf->length; chan >>= 16 - bf->length;
...@@ -443,14 +444,14 @@ static int lynxfb_suspend(struct pci_dev *pdev, pm_message_t mesg) ...@@ -443,14 +444,14 @@ static int lynxfb_suspend(struct pci_dev *pdev, pm_message_t mesg)
return ret; return ret;
} }
static int lynxfb_resume(struct pci_dev* pdev) static int lynxfb_resume(struct pci_dev *pdev)
{ {
struct fb_info * info; struct fb_info *info;
struct lynx_share * share; struct lynx_share *share;
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynxfb_crtc * crtc; struct lynxfb_crtc *crtc;
struct lynx_cursor * cursor; struct lynx_cursor *cursor;
int ret; int ret;
...@@ -510,12 +511,12 @@ static int lynxfb_resume(struct pci_dev* pdev) ...@@ -510,12 +511,12 @@ static int lynxfb_resume(struct pci_dev* pdev)
} }
#endif #endif
static int lynxfb_ops_check_var(struct fb_var_screeninfo* var, struct fb_info* info) static int lynxfb_ops_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
{ {
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynxfb_crtc * crtc; struct lynxfb_crtc *crtc;
struct lynxfb_output * output; struct lynxfb_output *output;
struct lynx_share * share; struct lynx_share *share;
int ret; int ret;
resource_size_t request; resource_size_t request;
...@@ -605,11 +606,11 @@ static int lynxfb_ops_check_var(struct fb_var_screeninfo* var, struct fb_info* i ...@@ -605,11 +606,11 @@ static int lynxfb_ops_check_var(struct fb_var_screeninfo* var, struct fb_info* i
static int lynxfb_ops_setcolreg(unsigned regno, unsigned red, static int lynxfb_ops_setcolreg(unsigned regno, unsigned red,
unsigned green, unsigned blue, unsigned green, unsigned blue,
unsigned transp, struct fb_info * info) unsigned transp, struct fb_info *info)
{ {
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynxfb_crtc * crtc; struct lynxfb_crtc *crtc;
struct fb_var_screeninfo * var; struct fb_var_screeninfo *var;
int ret; int ret;
par = info->par; par = info->par;
...@@ -654,10 +655,10 @@ static int lynxfb_ops_setcolreg(unsigned regno, unsigned red, ...@@ -654,10 +655,10 @@ static int lynxfb_ops_setcolreg(unsigned regno, unsigned red,
return ret; return ret;
} }
static int lynxfb_ops_blank(int blank, struct fb_info* info) static int lynxfb_ops_blank(int blank, struct fb_info *info)
{ {
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynxfb_output * output; struct lynxfb_output *output;
pr_debug("blank = %d.\n", blank); pr_debug("blank = %d.\n", blank);
par = info->par; par = info->par;
...@@ -665,13 +666,13 @@ static int lynxfb_ops_blank(int blank, struct fb_info* info) ...@@ -665,13 +666,13 @@ static int lynxfb_ops_blank(int blank, struct fb_info* info)
return output->proc_setBLANK(output, blank); return output->proc_setBLANK(output, blank);
} }
static int sm750fb_set_drv(struct lynxfb_par * par) static int sm750fb_set_drv(struct lynxfb_par *par)
{ {
int ret; int ret;
struct lynx_share * share; struct lynx_share *share;
struct sm750_share * spec_share; struct sm750_share *spec_share;
struct lynxfb_output * output; struct lynxfb_output *output;
struct lynxfb_crtc * crtc; struct lynxfb_crtc *crtc;
ret = 0; ret = 0;
...@@ -765,28 +766,28 @@ static struct fb_ops lynxfb_ops={ ...@@ -765,28 +766,28 @@ static struct fb_ops lynxfb_ops={
}; };
static int lynxfb_set_fbinfo(struct fb_info* info, int index) static int lynxfb_set_fbinfo(struct fb_info *info, int index)
{ {
int i; int i;
struct lynxfb_par * par; struct lynxfb_par *par;
struct lynx_share * share; struct lynx_share *share;
struct lynxfb_crtc * crtc; struct lynxfb_crtc *crtc;
struct lynxfb_output * output; struct lynxfb_output *output;
struct fb_var_screeninfo * var; struct fb_var_screeninfo *var;
struct fb_fix_screeninfo * fix; struct fb_fix_screeninfo *fix;
const struct fb_videomode * pdb[] = { const struct fb_videomode *pdb[] = {
lynx750_ext, NULL, vesa_modes, lynx750_ext, NULL, vesa_modes,
}; };
int cdb[] = {ARRAY_SIZE(lynx750_ext), 0, VESA_MODEDB_SIZE}; int cdb[] = {ARRAY_SIZE(lynx750_ext), 0, VESA_MODEDB_SIZE};
static const char * mdb_desc[] ={ static const char *mdb_desc[] ={
"driver prepared modes", "driver prepared modes",
"kernel prepared default modedb", "kernel prepared default modedb",
"kernel HELPERS prepared vesa_modes", "kernel HELPERS prepared vesa_modes",
}; };
static const char * fixId[2] = { static const char *fixId[2] = {
"sm750_fb1", "sm750_fb2", "sm750_fb1", "sm750_fb2",
}; };
...@@ -963,12 +964,12 @@ static int lynxfb_set_fbinfo(struct fb_info* info, int index) ...@@ -963,12 +964,12 @@ static int lynxfb_set_fbinfo(struct fb_info* info, int index)
} }
/* chip specific g_option configuration routine */ /* chip specific g_option configuration routine */
static void sm750fb_setup(struct lynx_share * share, char * src) static void sm750fb_setup(struct lynx_share *share, char *src)
{ {
struct sm750_share * spec_share; struct sm750_share *spec_share;
char * opt; char *opt;
#ifdef CAP_EXPENSION #ifdef CAP_EXPENSION
char * exp_res; char *exp_res;
#endif #endif
int swap; int swap;
...@@ -1058,11 +1059,11 @@ static void sm750fb_setup(struct lynx_share * share, char * src) ...@@ -1058,11 +1059,11 @@ static void sm750fb_setup(struct lynx_share * share, char * src)
} }
} }
static int lynxfb_pci_probe(struct pci_dev * pdev, static int lynxfb_pci_probe(struct pci_dev *pdev,
const struct pci_device_id * ent) const struct pci_device_id * ent)
{ {
struct fb_info * info[] = {NULL, NULL}; struct fb_info *info[] = {NULL, NULL};
struct lynx_share * share = NULL; struct lynx_share *share = NULL;
struct sm750_share *spec_share = NULL; struct sm750_share *spec_share = NULL;
size_t spec_offset = 0; size_t spec_offset = 0;
...@@ -1162,7 +1163,7 @@ static int lynxfb_pci_probe(struct pci_dev * pdev, ...@@ -1162,7 +1163,7 @@ static int lynxfb_pci_probe(struct pci_dev * pdev,
else else
goto err_info1_alloc; goto err_info1_alloc;
} else { } else {
struct lynxfb_par * par; struct lynxfb_par *par;
int errno; int errno;
pr_info("framebuffer #%d alloc okay\n", fbidx); pr_info("framebuffer #%d alloc okay\n", fbidx);
share->fbinfo[fbidx] = info[fbidx]; share->fbinfo[fbidx] = info[fbidx];
...@@ -1214,12 +1215,12 @@ static int lynxfb_pci_probe(struct pci_dev * pdev, ...@@ -1214,12 +1215,12 @@ static int lynxfb_pci_probe(struct pci_dev * pdev,
return -ENODEV; return -ENODEV;
} }
static void __exit lynxfb_pci_remove(struct pci_dev * pdev) static void __exit lynxfb_pci_remove(struct pci_dev *pdev)
{ {
struct fb_info * info; struct fb_info *info;
struct lynx_share * share; struct lynx_share *share;
void * spec_share; void *spec_share;
struct lynxfb_par * par; struct lynxfb_par *par;
int cnt; int cnt;
cnt = 2; cnt = 2;
...@@ -1252,10 +1253,10 @@ static void __exit lynxfb_pci_remove(struct pci_dev * pdev) ...@@ -1252,10 +1253,10 @@ static void __exit lynxfb_pci_remove(struct pci_dev * pdev)
pci_set_drvdata(pdev, NULL); pci_set_drvdata(pdev, NULL);
} }
static int __init lynxfb_setup(char * options) static int __init lynxfb_setup(char *options)
{ {
int len; int len;
char * opt,*tmp; char *opt, *tmp;
if (!options || !*options) { if (!options || !*options) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment