diff options
| author | Antonino A. Daplas <adaplas@gmail.com> | 2006-01-09 23:53:11 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:01:46 -0500 |
| commit | a807f618b62594467a52b488912bd77606af0572 (patch) | |
| tree | c91985182777dadd852ef6d08346b0b1fc42250a /include/video | |
| parent | 6772a2ee9d5992a712b46990f39249c500e0221f (diff) | |
[PATCH] fbdev: tdfxfb: Driver cleanups
- remove unneeded casts
- move memory for pseudo_palette inside struct tdfxfb_par
- whitespace changes
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/video')
| -rw-r--r-- | include/video/tdfx.h | 86 |
1 files changed, 43 insertions, 43 deletions
diff --git a/include/video/tdfx.h b/include/video/tdfx.h index 04237676b17c..c1cc94ba3fdd 100644 --- a/include/video/tdfx.h +++ b/include/video/tdfx.h | |||
| @@ -140,52 +140,52 @@ | |||
| 140 | #ifdef __KERNEL__ | 140 | #ifdef __KERNEL__ |
| 141 | 141 | ||
| 142 | struct banshee_reg { | 142 | struct banshee_reg { |
| 143 | /* VGA rubbish */ | 143 | /* VGA rubbish */ |
| 144 | unsigned char att[21]; | 144 | unsigned char att[21]; |
| 145 | unsigned char crt[25]; | 145 | unsigned char crt[25]; |
| 146 | unsigned char gra[ 9]; | 146 | unsigned char gra[ 9]; |
| 147 | unsigned char misc[1]; | 147 | unsigned char misc[1]; |
| 148 | unsigned char seq[ 5]; | 148 | unsigned char seq[ 5]; |
| 149 | 149 | ||
| 150 | /* Banshee extensions */ | 150 | /* Banshee extensions */ |
| 151 | unsigned char ext[2]; | 151 | unsigned char ext[2]; |
| 152 | unsigned long vidcfg; | 152 | unsigned long vidcfg; |
| 153 | unsigned long vidpll; | 153 | unsigned long vidpll; |
| 154 | unsigned long mempll; | 154 | unsigned long mempll; |
| 155 | unsigned long gfxpll; | 155 | unsigned long gfxpll; |
| 156 | unsigned long dacmode; | 156 | unsigned long dacmode; |
| 157 | unsigned long vgainit0; | 157 | unsigned long vgainit0; |
| 158 | unsigned long vgainit1; | 158 | unsigned long vgainit1; |
| 159 | unsigned long screensize; | 159 | unsigned long screensize; |
| 160 | unsigned long stride; | 160 | unsigned long stride; |
| 161 | unsigned long cursloc; | 161 | unsigned long cursloc; |
| 162 | unsigned long curspataddr; | 162 | unsigned long curspataddr; |
| 163 | unsigned long cursc0; | 163 | unsigned long cursc0; |
| 164 | unsigned long cursc1; | 164 | unsigned long cursc1; |
| 165 | unsigned long startaddr; | 165 | unsigned long startaddr; |
| 166 | unsigned long clip0min; | 166 | unsigned long clip0min; |
| 167 | unsigned long clip0max; | 167 | unsigned long clip0max; |
| 168 | unsigned long clip1min; | 168 | unsigned long clip1min; |
| 169 | unsigned long clip1max; | 169 | unsigned long clip1max; |
| 170 | unsigned long srcbase; | 170 | unsigned long srcbase; |
| 171 | unsigned long dstbase; | 171 | unsigned long dstbase; |
| 172 | unsigned long miscinit0; | 172 | unsigned long miscinit0; |
| 173 | }; | 173 | }; |
| 174 | 174 | ||
| 175 | struct tdfx_par { | 175 | struct tdfx_par { |
| 176 | u32 max_pixclock; | 176 | u32 max_pixclock; |
| 177 | 177 | u32 palette[16]; | |
| 178 | void __iomem *regbase_virt; | 178 | void __iomem *regbase_virt; |
| 179 | unsigned long iobase; | 179 | unsigned long iobase; |
| 180 | u32 baseline; | 180 | u32 baseline; |
| 181 | 181 | ||
| 182 | struct { | 182 | struct { |
| 183 | int w,u,d; | 183 | int w,u,d; |
| 184 | unsigned long enable,disable; | 184 | unsigned long enable,disable; |
| 185 | struct timer_list timer; | 185 | struct timer_list timer; |
| 186 | } hwcursor; | 186 | } hwcursor; |
| 187 | 187 | ||
| 188 | spinlock_t DAClock; | 188 | spinlock_t DAClock; |
| 189 | }; | 189 | }; |
| 190 | 190 | ||
| 191 | #endif /* __KERNEL__ */ | 191 | #endif /* __KERNEL__ */ |
