diff options
| author | Mika Westerberg <[email protected]> | 2017-06-06 15:24:56 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2017-06-09 11:42:41 +0200 |
| commit | b2466355c0007cbd853c3babce0cdb6ef1ff23bc (patch) | |
| tree | 78211427fd328b940e11ddfc980e9e0b4c559d26 | |
| parent | df1421b5f72979e48096f68c253f59aa7e8e7468 (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.c | 2 |
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); |