diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2011-06-01 00:11:10 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2011-06-23 01:58:10 -0400 |
commit | 1562ffde94fc232e5b7d6d32f43abb3e25468dac (patch) | |
tree | c04553e32f93b389153daea49a0f0d792708d14e | |
parent | e540afc32585664840506a7198966d18318381af (diff) |
drm/nouveau: silence error for missing dac loadval table
There's lots of boards (all recent ones) that don't have this anymore, so
punt the message to debug loglevel.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c index e93e3148b8e8..ff339df6f007 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.c +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c | |||
@@ -5186,7 +5186,7 @@ static int parse_bit_A_tbl_entry(struct drm_device *dev, struct nvbios *bios, st | |||
5186 | load_table_ptr = ROM16(bios->data[bitentry->offset]); | 5186 | load_table_ptr = ROM16(bios->data[bitentry->offset]); |
5187 | 5187 | ||
5188 | if (load_table_ptr == 0x0) { | 5188 | if (load_table_ptr == 0x0) { |
5189 | NV_ERROR(dev, "Pointer to BIT loadval table invalid\n"); | 5189 | NV_DEBUG(dev, "Pointer to BIT loadval table invalid\n"); |
5190 | return -EINVAL; | 5190 | return -EINVAL; |
5191 | } | 5191 | } |
5192 | 5192 | ||