aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMika Westerberg <[email protected]>2017-06-06 15:24:56 +0300
committerGreg Kroah-Hartman <[email protected]>2017-06-09 11:42:41 +0200
commitb2466355c0007cbd853c3babce0cdb6ef1ff23bc (patch)
tree78211427fd328b940e11ddfc980e9e0b4c559d26
parentdf1421b5f72979e48096f68c253f59aa7e8e7468 (diff)
thunderbolt: Do not warn about newer DROM versions
DROM version 2 is compatible with the previous generation so no need to warn about that. Signed-off-by: Mika Westerberg <[email protected]> Reviewed-by: Yehezkel Bernat <[email protected]> Reviewed-by: Michael Jamet <[email protected]> Reviewed-by: Andy Shevchenko <[email protected]> Signed-off-by: Andreas Noever <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/thunderbolt/eeprom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c
index e4e64b130514..eb2179c98b09 100644
--- a/drivers/thunderbolt/eeprom.c
+++ b/drivers/thunderbolt/eeprom.c
@@ -488,7 +488,7 @@ parse:
goto err;
}
- if (header->device_rom_revision > 1)
+ if (header->device_rom_revision > 2)
tb_sw_warn(sw, "drom device_rom_revision %#x unknown\n",
header->device_rom_revision);