diff options
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bios.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c index c1cee919b3cf..ef2fe964e9ab 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.c +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c | |||
@@ -4984,7 +4984,8 @@ read_dcb_i2c_entry(struct drm_device *dev, int dcb_version, uint8_t *i2ctable, i | |||
4984 | else | 4984 | else |
4985 | NV_WARN(dev, | 4985 | NV_WARN(dev, |
4986 | "DCB I2C table has more entries than indexable " | 4986 | "DCB I2C table has more entries than indexable " |
4987 | "(%d entries, max index 15)\n", i2ctable[2]); | 4987 | "(%d entries, max %d)\n", i2ctable[2], |
4988 | DCB_MAX_NUM_I2C_ENTRIES); | ||
4988 | entry_len = i2ctable[3]; | 4989 | entry_len = i2ctable[3]; |
4989 | /* [4] is i2c_default_indices, read in parse_dcb_table() */ | 4990 | /* [4] is i2c_default_indices, read in parse_dcb_table() */ |
4990 | } | 4991 | } |
@@ -5000,8 +5001,8 @@ read_dcb_i2c_entry(struct drm_device *dev, int dcb_version, uint8_t *i2ctable, i | |||
5000 | 5001 | ||
5001 | if (index == 0xf) | 5002 | if (index == 0xf) |
5002 | return 0; | 5003 | return 0; |
5003 | if (index > i2c_entries) { | 5004 | if (index >= i2c_entries) { |
5004 | NV_ERROR(dev, "DCB I2C index too big (%d > %d)\n", | 5005 | NV_ERROR(dev, "DCB I2C index too big (%d >= %d)\n", |
5005 | index, i2ctable[2]); | 5006 | index, i2ctable[2]); |
5006 | return -ENOENT; | 5007 | return -ENOENT; |
5007 | } | 5008 | } |