Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219282
b: refs/heads/master
c: 82c3cca
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Oct 21, 2010
1 parent 119aa6c commit b8e9974
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bae94dc39e9530842379208c4406512d34dc7ef3
refs/heads/master: 82c3ccaa974345b42cabcdb19f81f4776156b1f7
30 changes: 16 additions & 14 deletions trunk/drivers/media/video/cx231xx/cx231xx-417.c
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ enum cx231xx_mute_video_shift {


#define CX23417_GPIO_MASK 0xFC0003FF
int setITVCReg(struct cx231xx *dev, u32 gpio_direction, u32 value)
static int setITVCReg(struct cx231xx *dev, u32 gpio_direction, u32 value)
{
int status = 0;
u32 _gpio_direction = 0;
Expand All @@ -307,7 +307,7 @@ int setITVCReg(struct cx231xx *dev, u32 gpio_direction, u32 value)
(u8 *)&value, 4, 0, 0);
return status;
}
int getITVCReg(struct cx231xx *dev, u32 gpio_direction, u32 *pValue)
static int getITVCReg(struct cx231xx *dev, u32 gpio_direction, u32 *pValue)
{
int status = 0;
u32 _gpio_direction = 0;
Expand All @@ -319,7 +319,8 @@ int getITVCReg(struct cx231xx *dev, u32 gpio_direction, u32 *pValue)
(u8 *)pValue, 4, 0, 1);
return status;
}
int waitForMciComplete(struct cx231xx *dev)

static int waitForMciComplete(struct cx231xx *dev)
{
u32 gpio;
u32 gpio_driection = 0;
Expand All @@ -339,7 +340,7 @@ int waitForMciComplete(struct cx231xx *dev)
return 0;
}

int mc417_register_write(struct cx231xx *dev, u16 address, u32 value)
static int mc417_register_write(struct cx231xx *dev, u16 address, u32 value)
{
u32 temp;
int status = 0;
Expand Down Expand Up @@ -397,7 +398,7 @@ int mc417_register_write(struct cx231xx *dev, u16 address, u32 value)
return waitForMciComplete(dev);
}

int mc417_register_read(struct cx231xx *dev, u16 address, u32 *value)
static int mc417_register_read(struct cx231xx *dev, u16 address, u32 *value)
{
/*write address byte 0;*/
u32 temp;
Expand Down Expand Up @@ -473,7 +474,7 @@ int mc417_register_read(struct cx231xx *dev, u16 address, u32 *value)
return ret;
}

int mc417_memory_write(struct cx231xx *dev, u32 address, u32 value)
static int mc417_memory_write(struct cx231xx *dev, u32 address, u32 value)
{
/*write data byte 0;*/

Expand Down Expand Up @@ -537,7 +538,7 @@ int mc417_memory_write(struct cx231xx *dev, u32 address, u32 value)
return 0;
}

int mc417_memory_read(struct cx231xx *dev, u32 address, u32 *value)
static int mc417_memory_read(struct cx231xx *dev, u32 address, u32 *value)
{
u32 temp = 0;
u32 return_value = 0;
Expand Down Expand Up @@ -611,7 +612,7 @@ int mc417_memory_read(struct cx231xx *dev, u32 address, u32 *value)
return ret;
}

void mc417_gpio_set(struct cx231xx *dev, u32 mask)
static void mc417_gpio_set(struct cx231xx *dev, u32 mask)
{
u32 val;

Expand All @@ -621,7 +622,7 @@ void mc417_gpio_set(struct cx231xx *dev, u32 mask)
mc417_register_write(dev, 0x900C, val);
}

void mc417_gpio_clear(struct cx231xx *dev, u32 mask)
static void mc417_gpio_clear(struct cx231xx *dev, u32 mask)
{
u32 val;

Expand All @@ -631,7 +632,7 @@ void mc417_gpio_clear(struct cx231xx *dev, u32 mask)
mc417_register_write(dev, 0x900C, val);
}

void mc417_gpio_enable(struct cx231xx *dev, u32 mask, int asoutput)
static void mc417_gpio_enable(struct cx231xx *dev, u32 mask, int asoutput)
{
u32 val;

Expand Down Expand Up @@ -873,7 +874,8 @@ static int cx231xx_find_mailbox(struct cx231xx *dev)
dprintk(3, "Mailbox signature values not found!\n");
return -1;
}
void mciWriteMemoryToGPIO(struct cx231xx *dev, u32 address, u32 value,

static void mciWriteMemoryToGPIO(struct cx231xx *dev, u32 address, u32 value,
u32 *p_fw_image)
{

Expand Down Expand Up @@ -1095,7 +1097,7 @@ static int cx231xx_load_firmware(struct cx231xx *dev)
return 0;
}

void cx231xx_417_check_encoder(struct cx231xx *dev)
static void cx231xx_417_check_encoder(struct cx231xx *dev)
{
u32 status, seq;

Expand Down Expand Up @@ -1272,7 +1274,7 @@ static void free_buffer(struct videobuf_queue *vq, struct cx231xx_buffer *buf)
buf->vb.state = VIDEOBUF_NEEDS_INIT;
}

void buffer_copy(struct cx231xx *dev, char *data, int len, struct urb *urb,
static void buffer_copy(struct cx231xx *dev, char *data, int len, struct urb *urb,
struct cx231xx_dmaqueue *dma_q)
{
void *vbuf;
Expand Down Expand Up @@ -1334,7 +1336,7 @@ void buffer_copy(struct cx231xx *dev, char *data, int len, struct urb *urb,
return;
}

void buffer_filled(char *data, int len, struct urb *urb,
static void buffer_filled(char *data, int len, struct urb *urb,
struct cx231xx_dmaqueue *dma_q)
{
void *vbuf;
Expand Down

0 comments on commit b8e9974

Please sign in to comment.