From: Mika Westerberg Date: Tue, 6 Jun 2017 12:24:55 +0000 (+0300) Subject: thunderbolt: Do not try to read UID if DROM offset is read as 0 X-Git-Tag: v4.13~439^2~86 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=df1421b5f72979e48096f68c253f59aa7e8e7468;p=mirror_ubuntu-bionic-kernel.git thunderbolt: Do not try to read UID if DROM offset is read as 0 At least Falcon Ridge when in host mode does not have any kind of DROM available and reading DROM offset returns 0 for these. Do not try to read DROM any further in that case. Signed-off-by: Mika Westerberg Reviewed-by: Yehezkel Bernat Reviewed-by: Michael Jamet Reviewed-by: Andy Shevchenko Signed-off-by: Andreas Noever Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c index 6392990c984d..e4e64b130514 100644 --- a/drivers/thunderbolt/eeprom.c +++ b/drivers/thunderbolt/eeprom.c @@ -276,6 +276,9 @@ int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid) if (res) return res; + if (drom_offset == 0) + return -ENODEV; + /* read uid */ res = tb_eeprom_read_n(sw, drom_offset, data, 9); if (res)