aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_bios.h
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2010-02-23 19:03:05 -0500
committerBen Skeggs <bskeggs@redhat.com>2010-02-25 00:09:21 -0500
commit04a39c577f4114a3f098ee8ef0e20f7778b5ddad (patch)
tree681d13d2a73c86a293a0ad6fa9d5e6ef4a5fd42e /drivers/gpu/drm/nouveau/nouveau_bios.h
parent7f245b20e30515264b94f6373ef7d721155990a4 (diff)
drm/nouveau: merge nvbios and nouveau_bios_info
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_bios.h')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_bios.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.h b/drivers/gpu/drm/nouveau/nouveau_bios.h
index 449a5f3d47d0..38c856fae141 100644
--- a/drivers/gpu/drm/nouveau/nouveau_bios.h
+++ b/drivers/gpu/drm/nouveau/nouveau_bios.h
@@ -186,18 +186,15 @@ struct pll_lims {
186 int refclk; 186 int refclk;
187}; 187};
188 188
189struct nouveau_bios_info { 189struct nvbios {
190 struct drm_device *dev;
191
190 uint8_t chip_version; 192 uint8_t chip_version;
191 193
192 uint32_t dactestval; 194 uint32_t dactestval;
193 uint32_t tvdactestval; 195 uint32_t tvdactestval;
194 uint8_t digital_min_front_porch; 196 uint8_t digital_min_front_porch;
195 bool fp_no_ddc; 197 bool fp_no_ddc;
196};
197
198struct nvbios {
199 struct drm_device *dev;
200 struct nouveau_bios_info pub;
201 198
202 struct mutex lock; 199 struct mutex lock;
203 200