diff options
author | Dave Airlie <airlied@gmail.com> | 2012-08-15 14:31:22 +0400 |
---|---|---|
committer | Dave Airlie <airlied@gmail.com> | 2012-08-15 14:31:22 +0400 |
commit | 2e26c73a1e410448fbd2c0fbd34f06d98eaf8e48 (patch) | |
tree | 292356971e07592630e1ad70929add156baff01c /drivers/gpu/drm/nouveau/nouveau_i2c.c | |
parent | a389b6a1564b7c4147fa5ce51e0aad63b5e8ebd1 (diff) | |
parent | 2064db725cc6d4ea19a24c138bc37939b63e3ae6 (diff) | |
download | linux-2e26c73a1e410448fbd2c0fbd34f06d98eaf8e48.tar.xz |
Merge branch 'drm-nouveau-fixes' of git://git.freedesktop.org/git/nouveau/linux-2.6 into drm-fixes
* 'drm-nouveau-fixes' of git://git.freedesktop.org/git/nouveau/linux-2.6:
drm/nv86/fifo: suspend fix
drm/nouveau: disable copy engine on NVAF
nouveau: fixup scanout enable in nvc0_pm
drm/nouveau/aux: mask off higher bits of auxch index in i2c table entry
drm/nvd0/disp: mask off high 16 bit of negative cursor x-coordinate
drm/nve0/fifo: add support for the flip completion swmthd
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_i2c.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_i2c.c b/drivers/gpu/drm/nouveau/nouveau_i2c.c index 77e564667b5c..240cf962c999 100644 --- a/drivers/gpu/drm/nouveau/nouveau_i2c.c +++ b/drivers/gpu/drm/nouveau/nouveau_i2c.c @@ -229,7 +229,7 @@ nouveau_i2c_init(struct drm_device *dev) } break; case 6: /* NV50- DP AUX */ - port->drive = entry[0]; + port->drive = entry[0] & 0x0f; port->sense = port->drive; port->adapter.algo = &nouveau_dp_i2c_algo; break; |