提交 972c3517 编写于 作者: A Adrian Bunk 提交者: Mauro Carvalho Chehab

V4L/DVB (3931): Vivi.c: possible cleanups

This patch contains the following possible cleanup:
- make needlessly global functions static
- remove unused #ifndef kzalloc kzalloc() #define
- remove inline's from functions
Signed-off-by: NAdrian Bunk <bunk@stusta.de>
Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
上级 9a8e10e0
...@@ -48,16 +48,6 @@ ...@@ -48,16 +48,6 @@
#include "font.h" #include "font.h"
#ifndef kzalloc
#define kzalloc(size, flags) \
({ \
void *__ret = kmalloc(size, flags); \
if (__ret) \
memset(__ret, 0, size); \
__ret; \
})
#endif
MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board"); MODULE_DESCRIPTION("Video Technology Magazine Virtual Video Capture Board");
MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol"); MODULE_AUTHOR("Mauro Carvalho Chehab, Ted Walther and John Sokol");
MODULE_LICENSE("Dual BSD/GPL"); MODULE_LICENSE("Dual BSD/GPL");
...@@ -248,7 +238,8 @@ static u8 bars[8][3] = { ...@@ -248,7 +238,8 @@ static u8 bars[8][3] = {
#define TSTAMP_MAX_Y TSTAMP_MIN_Y+15 #define TSTAMP_MAX_Y TSTAMP_MIN_Y+15
#define TSTAMP_MIN_X 64 #define TSTAMP_MIN_X 64
void prep_to_addr(struct sg_to_addr to_addr[],struct videobuf_buffer *vb) static void prep_to_addr(struct sg_to_addr to_addr[],
struct videobuf_buffer *vb)
{ {
int i, pos=0; int i, pos=0;
...@@ -259,7 +250,7 @@ void prep_to_addr(struct sg_to_addr to_addr[],struct videobuf_buffer *vb) ...@@ -259,7 +250,7 @@ void prep_to_addr(struct sg_to_addr to_addr[],struct videobuf_buffer *vb)
} }
} }
inline int get_addr_pos(int pos, int pages, struct sg_to_addr to_addr[]) static int get_addr_pos(int pos, int pages, struct sg_to_addr to_addr[])
{ {
int p1=0,p2=pages-1,p3=pages/2; int p1=0,p2=pages-1,p3=pages/2;
...@@ -280,7 +271,7 @@ inline int get_addr_pos(int pos, int pages, struct sg_to_addr to_addr[]) ...@@ -280,7 +271,7 @@ inline int get_addr_pos(int pos, int pages, struct sg_to_addr to_addr[])
return (p1); return (p1);
} }
void gen_line(struct sg_to_addr to_addr[],int inipos,int pages,int wmax, static void gen_line(struct sg_to_addr to_addr[],int inipos,int pages,int wmax,
int hmax, int line, char *timestr) int hmax, int line, char *timestr)
{ {
int w,i,j,pos=inipos,pgpos,oldpg,y; int w,i,j,pos=inipos,pgpos,oldpg,y;
...@@ -491,7 +482,7 @@ static void vivi_thread_tick(struct vivi_dmaqueue *dma_q) ...@@ -491,7 +482,7 @@ static void vivi_thread_tick(struct vivi_dmaqueue *dma_q)
dprintk(1,"%s: %d buffers handled (should be 1)\n",__FUNCTION__,bc); dprintk(1,"%s: %d buffers handled (should be 1)\n",__FUNCTION__,bc);
} }
void vivi_sleep(struct vivi_dmaqueue *dma_q) static void vivi_sleep(struct vivi_dmaqueue *dma_q)
{ {
int timeout; int timeout;
DECLARE_WAITQUEUE(wait, current); DECLARE_WAITQUEUE(wait, current);
...@@ -526,7 +517,7 @@ void vivi_sleep(struct vivi_dmaqueue *dma_q) ...@@ -526,7 +517,7 @@ void vivi_sleep(struct vivi_dmaqueue *dma_q)
try_to_freeze(); try_to_freeze();
} }
int vivi_thread(void *data) static int vivi_thread(void *data)
{ {
struct vivi_dmaqueue *dma_q=data; struct vivi_dmaqueue *dma_q=data;
...@@ -542,7 +533,7 @@ int vivi_thread(void *data) ...@@ -542,7 +533,7 @@ int vivi_thread(void *data)
return 0; return 0;
} }
int vivi_start_thread(struct vivi_dmaqueue *dma_q) static int vivi_start_thread(struct vivi_dmaqueue *dma_q)
{ {
dma_q->frame=0; dma_q->frame=0;
dma_q->ini_jiffies=jiffies; dma_q->ini_jiffies=jiffies;
...@@ -560,7 +551,7 @@ int vivi_start_thread(struct vivi_dmaqueue *dma_q) ...@@ -560,7 +551,7 @@ int vivi_start_thread(struct vivi_dmaqueue *dma_q)
return 0; return 0;
} }
void vivi_stop_thread(struct vivi_dmaqueue *dma_q) static void vivi_stop_thread(struct vivi_dmaqueue *dma_q)
{ {
dprintk(1,"%s\n",__FUNCTION__); dprintk(1,"%s\n",__FUNCTION__);
/* shutdown control thread */ /* shutdown control thread */
...@@ -666,8 +657,7 @@ buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size) ...@@ -666,8 +657,7 @@ buffer_setup(struct videobuf_queue *vq, unsigned int *count, unsigned int *size)
return 0; return 0;
} }
void static void free_buffer(struct videobuf_queue *vq, struct vivi_buffer *buf)
free_buffer(struct videobuf_queue *vq, struct vivi_buffer *buf)
{ {
dprintk(1,"%s\n",__FUNCTION__); dprintk(1,"%s\n",__FUNCTION__);
...@@ -791,7 +781,7 @@ static void buffer_release(struct videobuf_queue *vq, struct videobuf_buffer *vb ...@@ -791,7 +781,7 @@ static void buffer_release(struct videobuf_queue *vq, struct videobuf_buffer *vb
free_buffer(vq,buf); free_buffer(vq,buf);
} }
int vivi_map_sg (void *dev, struct scatterlist *sg, int nents, static int vivi_map_sg(void *dev, struct scatterlist *sg, int nents,
int direction) int direction)
{ {
int i; int i;
...@@ -808,14 +798,14 @@ int vivi_map_sg (void *dev, struct scatterlist *sg, int nents, ...@@ -808,14 +798,14 @@ int vivi_map_sg (void *dev, struct scatterlist *sg, int nents,
return nents; return nents;
} }
int vivi_unmap_sg(void *dev,struct scatterlist *sglist,int nr_pages, static int vivi_unmap_sg(void *dev,struct scatterlist *sglist,int nr_pages,
int direction) int direction)
{ {
dprintk(1,"%s\n",__FUNCTION__); dprintk(1,"%s\n",__FUNCTION__);
return 0; return 0;
} }
int vivi_dma_sync_sg(void *dev,struct scatterlist *sglist,int nr_pages, static int vivi_dma_sync_sg(void *dev,struct scatterlist *sglist, int nr_pages,
int direction) int direction)
{ {
// dprintk(1,"%s\n",__FUNCTION__); // dprintk(1,"%s\n",__FUNCTION__);
...@@ -900,7 +890,7 @@ static int res_get(struct vivi_dev *dev, struct vivi_fh *fh) ...@@ -900,7 +890,7 @@ static int res_get(struct vivi_dev *dev, struct vivi_fh *fh)
return 1; return 1;
} }
static inline int res_locked(struct vivi_dev *dev) static int res_locked(struct vivi_dev *dev)
{ {
return (dev->resources); return (dev->resources);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册