diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-08-13 15:41:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-08-13 15:41:58 -0400 |
commit | ce7ba95cf078337c9921b301a7e4b9e82561db38 (patch) | |
tree | 3c888fee60a931ca658218adc58bc12df4864c37 /drivers/thunderbolt | |
parent | 438630ef5b3c8755d642b6ca3bc10625ab0af79b (diff) | |
parent | 1cd65d17612e8b64989f7af20213d4bb7a7f4d91 (diff) |
Merge tag 'char-misc-4.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
Pull char/misc fixes from Greg KH:
"Here are two patches for 4.13-rc5.
One is a fix for a reported thunderbolt issue, and the other a fix for
an MEI driver issue. Both have been in linux-next with no reported
issues"
* tag 'char-misc-4.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc:
thunderbolt: Do not enumerate more ports from DROM than the controller has
mei: exclude device from suspend direct complete optimization
Diffstat (limited to 'drivers/thunderbolt')
-rw-r--r-- | drivers/thunderbolt/eeprom.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c index 308b6e17c88a..fe2f00ceafc5 100644 --- a/drivers/thunderbolt/eeprom.c +++ b/drivers/thunderbolt/eeprom.c | |||
@@ -333,6 +333,15 @@ static int tb_drom_parse_entry_port(struct tb_switch *sw, | |||
333 | int res; | 333 | int res; |
334 | enum tb_port_type type; | 334 | enum tb_port_type type; |
335 | 335 | ||
336 | /* | ||
337 | * Some DROMs list more ports than the controller actually has | ||
338 | * so we skip those but allow the parser to continue. | ||
339 | */ | ||
340 | if (header->index > sw->config.max_port_number) { | ||
341 | dev_info_once(&sw->dev, "ignoring unnecessary extra entries in DROM\n"); | ||
342 | return 0; | ||
343 | } | ||
344 | |||
336 | port = &sw->ports[header->index]; | 345 | port = &sw->ports[header->index]; |
337 | port->disabled = header->port_disabled; | 346 | port->disabled = header->port_disabled; |
338 | if (port->disabled) | 347 | if (port->disabled) |