diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-11-20 19:40:13 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-12-07 19:22:40 -0500 |
commit | 1a66c95a64c9ae0bc8382254f544b24b23f498ec (patch) | |
tree | 50b4d21e72881cd221660118bdfc02c2036a8075 /drivers/gpu/drm/radeon/radeon_mode.h | |
parent | 746c1aa4d100f7441423050f34be79f401fbf7d4 (diff) |
drm/radeon/kms: DP fixes and cleanup from the ddx
- dpcp -> dpcd
- fix up dig encoder routing
- aux transaction table takes delay in 10 usec units
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_mode.h')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_mode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_mode.h b/drivers/gpu/drm/radeon/radeon_mode.h index ce1cdc748f1..166f75395f5 100644 --- a/drivers/gpu/drm/radeon/radeon_mode.h +++ b/drivers/gpu/drm/radeon/radeon_mode.h | |||
@@ -335,7 +335,7 @@ struct radeon_connector_atom_dig { | |||
335 | bool linkb; | 335 | bool linkb; |
336 | uint16_t uc_i2c_id; | 336 | uint16_t uc_i2c_id; |
337 | struct radeon_i2c_chan *dp_i2c_bus; | 337 | struct radeon_i2c_chan *dp_i2c_bus; |
338 | u8 dpcp[8]; | 338 | u8 dpcd[8]; |
339 | }; | 339 | }; |
340 | 340 | ||
341 | struct radeon_connector { | 341 | struct radeon_connector { |
@@ -362,7 +362,7 @@ struct radeon_framebuffer { | |||
362 | }; | 362 | }; |
363 | 363 | ||
364 | extern int radeon_dp_getsinktype(struct radeon_connector *radeon_connector); | 364 | extern int radeon_dp_getsinktype(struct radeon_connector *radeon_connector); |
365 | extern void radeon_dp_getdpcp(struct radeon_connector *connector); | 365 | extern void radeon_dp_getdpcd(struct radeon_connector *connector); |
366 | extern int radeon_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode, | 366 | extern int radeon_dp_i2c_aux_ch(struct i2c_adapter *adapter, int mode, |
367 | uint8_t write_byte, uint8_t *read_byte); | 367 | uint8_t write_byte, uint8_t *read_byte); |
368 | 368 | ||