Commit 85cb9b68 authored by Stefan Richter's avatar Stefan Richter

firewire: core: fix topology map response handler

This register is 1 kBytes large.  Adjust topology_map.length to prevent
registration of other response handlers in this region and to make sure
that we respond to requests to the upper half of the register.
Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent b171e204
...@@ -834,7 +834,7 @@ static void handle_topology_map(struct fw_card *card, struct fw_request *request ...@@ -834,7 +834,7 @@ static void handle_topology_map(struct fw_card *card, struct fw_request *request
} }
static struct fw_address_handler topology_map = { static struct fw_address_handler topology_map = {
.length = 0x200, .length = 0x400,
.address_callback = handle_topology_map, .address_callback = handle_topology_map,
}; };
......
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