Commit eb0f4271 authored by Greg Donald's avatar Greg Donald Committed by Greg Kroah-Hartman

drivers: staging: sm750fb: Fix "'foo * bar' should be 'foo *bar'" errors

Fix checkpatch.pl "'foo * bar' should be 'foo *bar'" errors
Signed-off-by: default avatarGreg Donald <gdonald@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 78cb7a38
...@@ -433,7 +433,7 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll) ...@@ -433,7 +433,7 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll)
unsigned int RN, quo, rem, fl_quo; unsigned int RN, quo, rem, fl_quo;
unsigned int input, request; unsigned int input, request;
unsigned int tmpClock, ret; unsigned int tmpClock, ret;
pllcalparam * xparm; pllcalparam *xparm;
#if 1 #if 1
if (getChipType() == SM750LE) { if (getChipType() == SM750LE) {
......
#include "ddk750_help.h" #include "ddk750_help.h"
void __iomem * mmio750 = NULL; void __iomem *mmio750 = NULL;
char revId750 = 0; char revId750 = 0;
unsigned short devId750 = 0; unsigned short devId750 = 0;
/* after driver mapped io registers, use this function first */ /* after driver mapped io registers, use this function first */
void ddk750_set_mmio(void __iomem * addr, unsigned short devId, char revId) void ddk750_set_mmio(void __iomem *addr, unsigned short devId, char revId)
{ {
mmio750 = addr; mmio750 = addr;
devId750 = devId; devId750 = devId;
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#define POKE32(addr, data) writel(data, addr + mmio750) #define POKE32(addr, data) writel(data, addr + mmio750)
#endif #endif
extern void __iomem * mmio750; extern void __iomem *mmio750;
extern char revId750; extern char revId750;
extern unsigned short devId750; extern unsigned short devId750;
#else #else
......
...@@ -75,7 +75,7 @@ static unsigned long displayControlAdjust_SM750LE(mode_parameter_t *pModeParam, ...@@ -75,7 +75,7 @@ static unsigned long displayControlAdjust_SM750LE(mode_parameter_t *pModeParam,
/* only timing related registers will be programed */ /* only timing related registers will be programed */
static int programModeRegisters(mode_parameter_t * pModeParam, pll_value_t * pll) static int programModeRegisters(mode_parameter_t *pModeParam, pll_value_t *pll)
{ {
int ret = 0; int ret = 0;
int cnt = 0; int cnt = 0;
...@@ -185,7 +185,7 @@ static int programModeRegisters(mode_parameter_t * pModeParam, pll_value_t * pll ...@@ -185,7 +185,7 @@ static int programModeRegisters(mode_parameter_t * pModeParam, pll_value_t * pll
return ret; return ret;
} }
int ddk750_setModeTiming(mode_parameter_t * parm, clock_type_t clock) int ddk750_setModeTiming(mode_parameter_t *parm, clock_type_t clock)
{ {
pll_value_t pll; pll_value_t pll;
unsigned int uiActualPixelClk; unsigned int uiActualPixelClk;
......
...@@ -1087,7 +1087,7 @@ static void sm750fb_setup(struct lynx_share *share, char *src) ...@@ -1087,7 +1087,7 @@ 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;
......
...@@ -45,8 +45,8 @@ struct lynx_share{ ...@@ -45,8 +45,8 @@ struct lynx_share{
/* common members */ /* common members */
u16 devid; u16 devid;
u8 revid; u8 revid;
struct pci_dev * pdev; struct pci_dev *pdev;
struct fb_info * fbinfo[2]; struct fb_info *fbinfo[2];
struct lynx_accel accel; struct lynx_accel accel;
int accel_off; int accel_off;
int dual; int dual;
...@@ -59,8 +59,8 @@ struct lynx_share{ ...@@ -59,8 +59,8 @@ struct lynx_share{
unsigned long vidreg_start; unsigned long vidreg_start;
__u32 vidmem_size; __u32 vidmem_size;
__u32 vidreg_size; __u32 vidreg_size;
void __iomem * pvReg; void __iomem *pvReg;
unsigned char __iomem * pvMem; unsigned char __iomem *pvMem;
/* locks*/ /* locks*/
spinlock_t slock; spinlock_t slock;
/* function pointers */ /* function pointers */
...@@ -77,12 +77,12 @@ struct lynx_cursor{ ...@@ -77,12 +77,12 @@ struct lynx_cursor{
int maxW; int maxW;
int maxH; int maxH;
/* base virtual address and offset of cursor image */ /* base virtual address and offset of cursor image */
char __iomem * vstart; char __iomem *vstart;
int offset; int offset;
/* mmio addr of hw cursor */ /* mmio addr of hw cursor */
volatile char __iomem * mmio; volatile char __iomem * mmio;
/* the lynx_share of this adaptor */ /* the lynx_share of this adaptor */
struct lynx_share * share; struct lynx_share *share;
/* proc_routines */ /* proc_routines */
void (*enable)(struct lynx_cursor *); void (*enable)(struct lynx_cursor *);
void (*disable)(struct lynx_cursor *); void (*disable)(struct lynx_cursor *);
...@@ -93,8 +93,8 @@ struct lynx_cursor{ ...@@ -93,8 +93,8 @@ struct lynx_cursor{
}; };
struct lynxfb_crtc{ struct lynxfb_crtc{
unsigned char __iomem * vCursor; /* virtual address of cursor */ unsigned char __iomem *vCursor; /* virtual address of cursor */
unsigned char __iomem * vScreen; /* virtual address of on_screen */ unsigned char __iomem *vScreen; /* virtual address of on_screen */
int oCursor; /* cursor address offset in vidmem */ int oCursor; /* cursor address offset in vidmem */
int oScreen; /* onscreen address offset in vidmem */ int oScreen; /* onscreen address offset in vidmem */
int channel;/* which channel this crtc stands for*/ int channel;/* which channel this crtc stands for*/
...@@ -106,7 +106,7 @@ struct lynxfb_crtc{ ...@@ -106,7 +106,7 @@ struct lynxfb_crtc{
u16 ypanstep; u16 ypanstep;
u16 ywrapstep; u16 ywrapstep;
void * priv; void *priv;
int(*proc_setMode)(struct lynxfb_crtc*, int(*proc_setMode)(struct lynxfb_crtc*,
struct fb_var_screeninfo*, struct fb_var_screeninfo*,
...@@ -132,13 +132,13 @@ struct lynxfb_output{ ...@@ -132,13 +132,13 @@ struct lynxfb_output{
paths=3:means output for both panel and crt paths paths=3:means output for both panel and crt paths
*/ */
int * channel; int *channel;
/* which channel these outputs linked with,for sm750: /* which channel these outputs linked with,for sm750:
*channel=0 means primary channel *channel=0 means primary channel
*channel=1 means secondary channel *channel=1 means secondary channel
output->channel ==> &crtc->channel output->channel ==> &crtc->channel
*/ */
void * priv; void *priv;
int(*proc_setMode)(struct lynxfb_output*, int(*proc_setMode)(struct lynxfb_output*,
struct fb_var_screeninfo*, struct fb_var_screeninfo*,
...@@ -155,8 +155,8 @@ struct lynxfb_par{ ...@@ -155,8 +155,8 @@ struct lynxfb_par{
unsigned int pseudo_palette[256]; unsigned int pseudo_palette[256];
struct lynxfb_crtc crtc; struct lynxfb_crtc crtc;
struct lynxfb_output output; struct lynxfb_output output;
struct fb_info * info; struct fb_info *info;
struct lynx_share * share; struct lynx_share *share;
}; };
#ifndef offsetof #ifndef offsetof
......
...@@ -18,22 +18,22 @@ ...@@ -18,22 +18,22 @@
#include "sm750.h" #include "sm750.h"
#include "sm750_accel.h" #include "sm750_accel.h"
#include "sm750_help.h" #include "sm750_help.h"
static inline void write_dpr(struct lynx_accel * accel, int offset, u32 regValue) static inline void write_dpr(struct lynx_accel *accel, int offset, u32 regValue)
{ {
writel(regValue, accel->dprBase + offset); writel(regValue, accel->dprBase + offset);
} }
static inline u32 read_dpr(struct lynx_accel * accel, int offset) static inline u32 read_dpr(struct lynx_accel *accel, int offset)
{ {
return readl(accel->dprBase + offset); return readl(accel->dprBase + offset);
} }
static inline void write_dpPort(struct lynx_accel * accel, u32 data) static inline void write_dpPort(struct lynx_accel *accel, u32 data)
{ {
writel(data, accel->dpPortBase); writel(data, accel->dpPortBase);
} }
void hw_de_init(struct lynx_accel * accel) void hw_de_init(struct lynx_accel *accel)
{ {
/* setup 2d engine registers */ /* setup 2d engine registers */
u32 reg, clr; u32 reg, clr;
...@@ -79,7 +79,7 @@ void hw_de_init(struct lynx_accel * accel) ...@@ -79,7 +79,7 @@ void hw_de_init(struct lynx_accel * accel)
* but if you need dual framebuffer driver,need call set2dformat * but if you need dual framebuffer driver,need call set2dformat
* every time you use 2d function */ * every time you use 2d function */
void hw_set2dformat(struct lynx_accel * accel, int fmt) void hw_set2dformat(struct lynx_accel *accel, int fmt)
{ {
u32 reg; u32 reg;
...@@ -89,7 +89,7 @@ void hw_set2dformat(struct lynx_accel * accel, int fmt) ...@@ -89,7 +89,7 @@ void hw_set2dformat(struct lynx_accel * accel, int fmt)
write_dpr(accel, DE_STRETCH_FORMAT, reg); write_dpr(accel, DE_STRETCH_FORMAT, reg);
} }
int hw_fillrect(struct lynx_accel * accel, int hw_fillrect(struct lynx_accel *accel,
u32 base, u32 pitch, u32 Bpp, u32 base, u32 pitch, u32 Bpp,
u32 x, u32 y, u32 width, u32 height, u32 x, u32 y, u32 width, u32 height,
u32 color, u32 rop) u32 color, u32 rop)
...@@ -137,7 +137,7 @@ int hw_fillrect(struct lynx_accel * accel, ...@@ -137,7 +137,7 @@ int hw_fillrect(struct lynx_accel * accel,
} }
int hw_copyarea( int hw_copyarea(
struct lynx_accel * accel, struct lynx_accel *accel,
unsigned int sBase, /* Address of source: offset in frame buffer */ unsigned int sBase, /* Address of source: offset in frame buffer */
unsigned int sPitch, /* Pitch value of source surface in BYTE */ unsigned int sPitch, /* Pitch value of source surface in BYTE */
unsigned int sx, unsigned int sx,
...@@ -303,7 +303,7 @@ unsigned int rop2) /* ROP value */ ...@@ -303,7 +303,7 @@ unsigned int rop2) /* ROP value */
return 0; return 0;
} }
static unsigned int deGetTransparency(struct lynx_accel * accel) static unsigned int deGetTransparency(struct lynx_accel *accel)
{ {
unsigned int de_ctrl; unsigned int de_ctrl;
......
...@@ -234,17 +234,17 @@ ...@@ -234,17 +234,17 @@
#define BOTTOM_TO_TOP 1 #define BOTTOM_TO_TOP 1
#define RIGHT_TO_LEFT 1 #define RIGHT_TO_LEFT 1
void hw_set2dformat(struct lynx_accel * accel, int fmt); void hw_set2dformat(struct lynx_accel *accel, int fmt);
void hw_de_init(struct lynx_accel * accel); void hw_de_init(struct lynx_accel *accel);
int hw_fillrect(struct lynx_accel * accel, int hw_fillrect(struct lynx_accel *accel,
u32 base, u32 pitch, u32 Bpp, u32 base, u32 pitch, u32 Bpp,
u32 x, u32 y, u32 width, u32 height, u32 x, u32 y, u32 width, u32 height,
u32 color, u32 rop); u32 color, u32 rop);
int hw_copyarea( int hw_copyarea(
struct lynx_accel * accel, struct lynx_accel *accel,
unsigned int sBase, /* Address of source: offset in frame buffer */ unsigned int sBase, /* Address of source: offset in frame buffer */
unsigned int sPitch, /* Pitch value of source surface in BYTE */ unsigned int sPitch, /* Pitch value of source surface in BYTE */
unsigned int sx, unsigned int sx,
......
...@@ -58,7 +58,7 @@ writel((data), cursor->mmio + (addr)) ...@@ -58,7 +58,7 @@ writel((data), cursor->mmio + (addr))
/* hw_cursor_xxx works for voyager,718 and 750 */ /* hw_cursor_xxx works for voyager,718 and 750 */
void hw_cursor_enable(struct lynx_cursor * cursor) void hw_cursor_enable(struct lynx_cursor *cursor)
{ {
u32 reg; u32 reg;
reg = FIELD_VALUE(0, HWC_ADDRESS, ADDRESS, cursor->offset)| reg = FIELD_VALUE(0, HWC_ADDRESS, ADDRESS, cursor->offset)|
...@@ -66,18 +66,18 @@ void hw_cursor_enable(struct lynx_cursor * cursor) ...@@ -66,18 +66,18 @@ void hw_cursor_enable(struct lynx_cursor * cursor)
FIELD_SET(0, HWC_ADDRESS, ENABLE, ENABLE); FIELD_SET(0, HWC_ADDRESS, ENABLE, ENABLE);
POKE32(HWC_ADDRESS, reg); POKE32(HWC_ADDRESS, reg);
} }
void hw_cursor_disable(struct lynx_cursor * cursor) void hw_cursor_disable(struct lynx_cursor *cursor)
{ {
POKE32(HWC_ADDRESS, 0); POKE32(HWC_ADDRESS, 0);
} }
void hw_cursor_setSize(struct lynx_cursor * cursor, void hw_cursor_setSize(struct lynx_cursor *cursor,
int w, int h) int w, int h)
{ {
cursor->w = w; cursor->w = w;
cursor->h = h; cursor->h = h;
} }
void hw_cursor_setPos(struct lynx_cursor * cursor, void hw_cursor_setPos(struct lynx_cursor *cursor,
int x, int y) int x, int y)
{ {
u32 reg; u32 reg;
...@@ -85,14 +85,14 @@ void hw_cursor_setPos(struct lynx_cursor * cursor, ...@@ -85,14 +85,14 @@ void hw_cursor_setPos(struct lynx_cursor * cursor,
FIELD_VALUE(0, HWC_LOCATION, X, x); FIELD_VALUE(0, HWC_LOCATION, X, x);
POKE32(HWC_LOCATION, reg); POKE32(HWC_LOCATION, reg);
} }
void hw_cursor_setColor(struct lynx_cursor * cursor, void hw_cursor_setColor(struct lynx_cursor *cursor,
u32 fg, u32 bg) u32 fg, u32 bg)
{ {
POKE32(HWC_COLOR_12, (fg<<16)|(bg&0xffff)); POKE32(HWC_COLOR_12, (fg<<16)|(bg&0xffff));
POKE32(HWC_COLOR_3, 0xffe0); POKE32(HWC_COLOR_3, 0xffe0);
} }
void hw_cursor_setData(struct lynx_cursor * cursor, void hw_cursor_setData(struct lynx_cursor *cursor,
u16 rop, const u8* pcol, const u8* pmsk) u16 rop, const u8* pcol, const u8* pmsk)
{ {
int i, j, count, pitch, offset; int i, j, count, pitch, offset;
...@@ -183,7 +183,7 @@ void hw_cursor_setData(struct lynx_cursor * cursor, ...@@ -183,7 +183,7 @@ void hw_cursor_setData(struct lynx_cursor * cursor,
} }
void hw_cursor_setData2(struct lynx_cursor * cursor, void hw_cursor_setData2(struct lynx_cursor *cursor,
u16 rop, const u8* pcol, const u8* pmsk) u16 rop, const u8* pcol, const u8* pmsk)
{ {
int i, j, count, pitch, offset; int i, j, count, pitch, offset;
......
...@@ -2,16 +2,16 @@ ...@@ -2,16 +2,16 @@
#define LYNX_CURSOR_H__ #define LYNX_CURSOR_H__
/* hw_cursor_xxx works for voyager,718 and 750 */ /* hw_cursor_xxx works for voyager,718 and 750 */
void hw_cursor_enable(struct lynx_cursor * cursor); void hw_cursor_enable(struct lynx_cursor *cursor);
void hw_cursor_disable(struct lynx_cursor * cursor); void hw_cursor_disable(struct lynx_cursor *cursor);
void hw_cursor_setSize(struct lynx_cursor * cursor, void hw_cursor_setSize(struct lynx_cursor *cursor,
int w, int h); int w, int h);
void hw_cursor_setPos(struct lynx_cursor * cursor, void hw_cursor_setPos(struct lynx_cursor *cursor,
int x, int y); int x, int y);
void hw_cursor_setColor(struct lynx_cursor * cursor, void hw_cursor_setColor(struct lynx_cursor *cursor,
u32 fg, u32 bg); u32 fg, u32 bg);
void hw_cursor_setData(struct lynx_cursor * cursor, void hw_cursor_setData(struct lynx_cursor *cursor,
u16 rop, const u8* data, const u8* mask); u16 rop, const u8* data, const u8* mask);
void hw_cursor_setData2(struct lynx_cursor * cursor, void hw_cursor_setData2(struct lynx_cursor *cursor,
u16 rop, const u8* data, const u8* mask); u16 rop, const u8* data, const u8* mask);
#endif #endif
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
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;
spec_share = container_of(share, struct sm750_share, share); spec_share = container_of(share, struct sm750_share, share);
...@@ -100,10 +100,10 @@ int hw_sm750_map(struct lynx_share* share, struct pci_dev* pdev) ...@@ -100,10 +100,10 @@ int hw_sm750_map(struct lynx_share* share, struct pci_dev* pdev)
int hw_sm750_inithw(struct lynx_share* share, struct pci_dev * pdev) int hw_sm750_inithw(struct lynx_share *share, struct pci_dev *pdev)
{ {
struct sm750_share * spec_share; struct sm750_share *spec_share;
struct init_status * parm; struct init_status *parm;
spec_share = container_of(share, struct sm750_share, share); spec_share = container_of(share, struct sm750_share, share);
parm = &spec_share->state.initParm; parm = &spec_share->state.initParm;
...@@ -199,7 +199,7 @@ int hw_sm750_inithw(struct lynx_share* share, struct pci_dev * pdev) ...@@ -199,7 +199,7 @@ int hw_sm750_inithw(struct lynx_share* share, struct pci_dev * pdev)
} }
resource_size_t hw_sm750_getVMSize(struct lynx_share * share) resource_size_t hw_sm750_getVMSize(struct lynx_share *share)
{ {
resource_size_t ret; resource_size_t ret;
...@@ -265,7 +265,7 @@ void hw_sm750_output_clear(struct lynxfb_output* output) ...@@ -265,7 +265,7 @@ void hw_sm750_output_clear(struct lynxfb_output* output)
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;
share = container_of(crtc, struct lynxfb_par, crtc)->share; share = container_of(crtc, struct lynxfb_par, crtc)->share;
...@@ -300,8 +300,8 @@ int hw_sm750_crtc_setMode(struct lynxfb_crtc* crtc, ...@@ -300,8 +300,8 @@ int hw_sm750_crtc_setMode(struct lynxfb_crtc* crtc,
u32 reg; u32 reg;
mode_parameter_t modparm; mode_parameter_t modparm;
clock_type_t clock; clock_type_t clock;
struct lynx_share * share; struct lynx_share *share;
struct lynxfb_par * par; struct lynxfb_par *par;
ret = 0; ret = 0;
...@@ -549,7 +549,7 @@ int hw_sm750_setBLANK(struct lynxfb_output* output, int blank) ...@@ -549,7 +549,7 @@ int hw_sm750_setBLANK(struct lynxfb_output* output, int blank)
} }
void hw_sm750_initAccel(struct lynx_share * share) void hw_sm750_initAccel(struct lynx_share *share)
{ {
u32 reg; u32 reg;
enable2DEngine(1); enable2DEngine(1);
......
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