Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54884
b: refs/heads/master
c: 9a268a6
h: refs/heads/master
v: v3
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed May 8, 2007
1 parent 16e5f4c commit aff1973
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: aad09e51eeb6ec68029271642a7528ffc08fee81
refs/heads/master: 9a268a629be4c15ed85c88a61d712d92aa943847
8 changes: 4 additions & 4 deletions trunk/drivers/video/hecubafb.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ static int __devinit apollo_init_control(struct hecubafb_par *par)
return 0;
}

void hcb_wait_for_ack(struct hecubafb_par *par)
static void hcb_wait_for_ack(struct hecubafb_par *par)
{

int timeout;
Expand All @@ -161,7 +161,7 @@ void hcb_wait_for_ack(struct hecubafb_par *par)
printk(KERN_ERR "timed out waiting for ack\n");
}

void hcb_wait_for_ack_clear(struct hecubafb_par *par)
static void hcb_wait_for_ack_clear(struct hecubafb_par *par)
{

int timeout;
Expand All @@ -177,7 +177,7 @@ void hcb_wait_for_ack_clear(struct hecubafb_par *par)
printk(KERN_ERR "timed out waiting for clear\n");
}

void apollo_send_data(struct hecubafb_par *par, unsigned char data)
static void apollo_send_data(struct hecubafb_par *par, unsigned char data)
{
/* set data */
hcb_set_data(par, data);
Expand All @@ -195,7 +195,7 @@ void apollo_send_data(struct hecubafb_par *par, unsigned char data)
hcb_wait_for_ack_clear(par);
}

void apollo_send_command(struct hecubafb_par *par, unsigned char data)
static void apollo_send_command(struct hecubafb_par *par, unsigned char data)
{
/* command so set CD to high */
par->ctl &= ~(HCB_NCD_BIT);
Expand Down

0 comments on commit aff1973

Please sign in to comment.