diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2008-08-06 19:13:56 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-08-06 19:13:56 -0400 |
commit | df0d1ef53100f0a19c5b5fdc349f5186c8d9bd87 (patch) | |
tree | ebc3424450c5e0a709bd0b103fcb0eb3eaa4e2fb /src/radeon_bios.c | |
parent | 18429390440a829fb24ed3afd99ccf8278138496 (diff) |
RS4xx: Fix up ddc gpio
- I mixed up the regs previously
Diffstat (limited to 'src/radeon_bios.c')
-rw-r--r-- | src/radeon_bios.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_bios.c b/src/radeon_bios.c index b9adf286..e8cc951c 100644 --- a/src/radeon_bios.c +++ b/src/radeon_bios.c @@ -467,8 +467,8 @@ static void RADEONApplyLegacyQuirks(ScrnInfoPtr pScrn, int index) info->BiosConnector[index].ddc_i2c.mask_data_reg = RADEON_GPIOPAD_MASK; info->BiosConnector[index].ddc_i2c.put_clk_reg = RADEON_GPIOPAD_EN; info->BiosConnector[index].ddc_i2c.put_data_reg = RADEON_GPIOPAD_EN; - info->BiosConnector[index].ddc_i2c.get_clk_reg = RADEON_GPIOPAD_MASK; - info->BiosConnector[index].ddc_i2c.get_data_reg = RADEON_GPIOPAD_MASK; + info->BiosConnector[index].ddc_i2c.get_clk_reg = RADEON_LCD_GPIO_Y_REG; + info->BiosConnector[index].ddc_i2c.get_data_reg = RADEON_LCD_GPIO_Y_REG; } /* Certain IBM chipset RN50s have a BIOS reporting two VGAs, |