staging: sm750fb: fix indentation of pointer operator
Fix indentation of pointer operator '*' according to checkpatch.pl message: "ERROR: 'foo* bar' should be 'foo *bar' " Signed-off-by: Anatoly Stepanov <drivengroove@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6d1b3d64cd
commit
e188ea325d
@ -24,7 +24,7 @@
|
|||||||
#include "ddk750.h"
|
#include "ddk750.h"
|
||||||
#include "sm750_accel.h"
|
#include "sm750_accel.h"
|
||||||
|
|
||||||
int hw_sm750_map(struct lynx_share* share, struct pci_dev* pdev)
|
int hw_sm750_map(struct lynx_share *share, struct pci_dev *pdev)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
struct sm750_share *spec_share;
|
struct sm750_share *spec_share;
|
||||||
@ -209,15 +209,15 @@ resource_size_t hw_sm750_getVMSize(struct lynx_share *share)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
int hw_sm750_output_checkMode(struct lynxfb_output* output, struct fb_var_screeninfo* var)
|
int hw_sm750_output_checkMode(struct lynxfb_output *output, struct fb_var_screeninfo *var)
|
||||||
{
|
{
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int hw_sm750_output_setMode(struct lynxfb_output* output,
|
int hw_sm750_output_setMode(struct lynxfb_output *output,
|
||||||
struct fb_var_screeninfo* var, struct fb_fix_screeninfo* fix)
|
struct fb_var_screeninfo *var, struct fb_fix_screeninfo *fix)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
disp_output_t dispSet;
|
disp_output_t dispSet;
|
||||||
@ -257,13 +257,13 @@ int hw_sm750_output_setMode(struct lynxfb_output* output,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void hw_sm750_output_clear(struct lynxfb_output* output)
|
void hw_sm750_output_clear(struct lynxfb_output *output)
|
||||||
{
|
{
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
int hw_sm750_crtc_checkMode(struct lynxfb_crtc* crtc, struct fb_var_screeninfo* var)
|
int hw_sm750_crtc_checkMode(struct lynxfb_crtc *crtc, struct fb_var_screeninfo *var)
|
||||||
{
|
{
|
||||||
struct lynx_share *share;
|
struct lynx_share *share;
|
||||||
|
|
||||||
@ -292,9 +292,9 @@ int hw_sm750_crtc_checkMode(struct lynxfb_crtc* crtc, struct fb_var_screeninfo*
|
|||||||
/*
|
/*
|
||||||
set the controller's mode for @crtc charged with @var and @fix parameters
|
set the controller's mode for @crtc charged with @var and @fix parameters
|
||||||
*/
|
*/
|
||||||
int hw_sm750_crtc_setMode(struct lynxfb_crtc* crtc,
|
int hw_sm750_crtc_setMode(struct lynxfb_crtc *crtc,
|
||||||
struct fb_var_screeninfo* var,
|
struct fb_var_screeninfo *var,
|
||||||
struct fb_fix_screeninfo* fix)
|
struct fb_fix_screeninfo *fix)
|
||||||
{
|
{
|
||||||
int ret, fmt;
|
int ret, fmt;
|
||||||
u32 reg;
|
u32 reg;
|
||||||
@ -412,13 +412,13 @@ exit:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void hw_sm750_crtc_clear(struct lynxfb_crtc* crtc)
|
void hw_sm750_crtc_clear(struct lynxfb_crtc *crtc)
|
||||||
{
|
{
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
int hw_sm750_setColReg(struct lynxfb_crtc* crtc, ushort index,
|
int hw_sm750_setColReg(struct lynxfb_crtc *crtc, ushort index,
|
||||||
ushort red, ushort green, ushort blue)
|
ushort red, ushort green, ushort blue)
|
||||||
{
|
{
|
||||||
static unsigned int add[]={PANEL_PALETTE_RAM, CRT_PALETTE_RAM};
|
static unsigned int add[]={PANEL_PALETTE_RAM, CRT_PALETTE_RAM};
|
||||||
@ -426,7 +426,7 @@ int hw_sm750_setColReg(struct lynxfb_crtc* crtc, ushort index,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int hw_sm750le_setBLANK(struct lynxfb_output * output, int blank) {
|
int hw_sm750le_setBLANK(struct lynxfb_output *output, int blank) {
|
||||||
int dpms, crtdb;
|
int dpms, crtdb;
|
||||||
|
|
||||||
switch (blank)
|
switch (blank)
|
||||||
@ -480,7 +480,7 @@ int hw_sm750le_setBLANK(struct lynxfb_output * output, int blank) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int hw_sm750_setBLANK(struct lynxfb_output* output, int blank)
|
int hw_sm750_setBLANK(struct lynxfb_output *output, int blank)
|
||||||
{
|
{
|
||||||
unsigned int dpms, pps, crtdb;
|
unsigned int dpms, pps, crtdb;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user