Skip to content

Commit

Permalink
firewire: core: fix topology map response handler
Browse files Browse the repository at this point in the history
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: Stefan Richter <stefanr@s5r6.in-berlin.de>
  • Loading branch information
Stefan Richter committed Sep 12, 2009
1 parent b171e20 commit 85cb9b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/firewire/core-transaction.c
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ static void handle_topology_map(struct fw_card *card, struct fw_request *request
}

static struct fw_address_handler topology_map = {
.length = 0x200,
.length = 0x400,
.address_callback = handle_topology_map,
};

Expand Down

0 comments on commit 85cb9b6

Please sign in to comment.