diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2011-04-06 13:44:10 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-04-09 16:21:13 +1000 |
commit | d4864d604a8d29a0d6a13a8d882be6e21c498c22 (patch) | |
tree | e5d7be61b4159c4850a74919f91520aedbc1940e /drivers/gpu | |
parent | 9bb09fa1b5b07459279301ac6220d575f307597b (diff) | |
download | linux-3.10-d4864d604a8d29a0d6a13a8d882be6e21c498c22.tar.gz linux-3.10-d4864d604a8d29a0d6a13a8d882be6e21c498c22.tar.bz2 linux-3.10-d4864d604a8d29a0d6a13a8d882be6e21c498c22.zip |
drm/radeon/kms: make radeon i2c put/get bytes less noisy
Switch some errors to debug output. These are generally harmless
and tend to confuse users.
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_i2c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_i2c.c b/drivers/gpu/drm/radeon/radeon_i2c.c index ded2a45bc95..ccbabf734a6 100644 --- a/drivers/gpu/drm/radeon/radeon_i2c.c +++ b/drivers/gpu/drm/radeon/radeon_i2c.c @@ -1062,7 +1062,7 @@ void radeon_i2c_get_byte(struct radeon_i2c_chan *i2c_bus, *val = in_buf[0]; DRM_DEBUG("val = 0x%02x\n", *val); } else { - DRM_ERROR("i2c 0x%02x 0x%02x read failed\n", + DRM_DEBUG("i2c 0x%02x 0x%02x read failed\n", addr, *val); } } @@ -1084,7 +1084,7 @@ void radeon_i2c_put_byte(struct radeon_i2c_chan *i2c_bus, out_buf[1] = val; if (i2c_transfer(&i2c_bus->adapter, &msg, 1) != 1) - DRM_ERROR("i2c 0x%02x 0x%02x write failed\n", + DRM_DEBUG("i2c 0x%02x 0x%02x write failed\n", addr, val); } |