diff options
-rw-r--r-- | drivers/video/hecubafb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/hecubafb.c b/drivers/video/hecubafb.c index 396dc277ab51..ea5a6c9e2c4e 100644 --- a/drivers/video/hecubafb.c +++ b/drivers/video/hecubafb.c | |||
@@ -145,7 +145,7 @@ static int __devinit apollo_init_control(struct hecubafb_par *par) | |||
145 | return 0; | 145 | return 0; |
146 | } | 146 | } |
147 | 147 | ||
148 | void hcb_wait_for_ack(struct hecubafb_par *par) | 148 | static void hcb_wait_for_ack(struct hecubafb_par *par) |
149 | { | 149 | { |
150 | 150 | ||
151 | int timeout; | 151 | int timeout; |
@@ -161,7 +161,7 @@ void hcb_wait_for_ack(struct hecubafb_par *par) | |||
161 | printk(KERN_ERR "timed out waiting for ack\n"); | 161 | printk(KERN_ERR "timed out waiting for ack\n"); |
162 | } | 162 | } |
163 | 163 | ||
164 | void hcb_wait_for_ack_clear(struct hecubafb_par *par) | 164 | static void hcb_wait_for_ack_clear(struct hecubafb_par *par) |
165 | { | 165 | { |
166 | 166 | ||
167 | int timeout; | 167 | int timeout; |
@@ -177,7 +177,7 @@ void hcb_wait_for_ack_clear(struct hecubafb_par *par) | |||
177 | printk(KERN_ERR "timed out waiting for clear\n"); | 177 | printk(KERN_ERR "timed out waiting for clear\n"); |
178 | } | 178 | } |
179 | 179 | ||
180 | void apollo_send_data(struct hecubafb_par *par, unsigned char data) | 180 | static void apollo_send_data(struct hecubafb_par *par, unsigned char data) |
181 | { | 181 | { |
182 | /* set data */ | 182 | /* set data */ |
183 | hcb_set_data(par, data); | 183 | hcb_set_data(par, data); |
@@ -195,7 +195,7 @@ void apollo_send_data(struct hecubafb_par *par, unsigned char data) | |||
195 | hcb_wait_for_ack_clear(par); | 195 | hcb_wait_for_ack_clear(par); |
196 | } | 196 | } |
197 | 197 | ||
198 | void apollo_send_command(struct hecubafb_par *par, unsigned char data) | 198 | static void apollo_send_command(struct hecubafb_par *par, unsigned char data) |
199 | { | 199 | { |
200 | /* command so set CD to high */ | 200 | /* command so set CD to high */ |
201 | par->ctl &= ~(HCB_NCD_BIT); | 201 | par->ctl &= ~(HCB_NCD_BIT); |