Commit d01b0178 authored by Stefan Richter's avatar Stefan Richter

firewire: core: remove condition which is always false

reread_bus_info_block() only gets to see devices whose config_rom_length
is at least 6 (ROM header, bus info block, root directory header).
Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent aed80892
...@@ -892,7 +892,7 @@ static int reread_bus_info_block(struct fw_device *device, int generation) ...@@ -892,7 +892,7 @@ static int reread_bus_info_block(struct fw_device *device, int generation)
if (i == 0 && q == 0) if (i == 0 && q == 0)
return REREAD_BIB_GONE; return REREAD_BIB_GONE;
if (i > device->config_rom_length || q != device->config_rom[i]) if (q != device->config_rom[i])
return REREAD_BIB_CHANGED; return REREAD_BIB_CHANGED;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment