Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 80948
b: refs/heads/master
c: 5a8a1bc
h: refs/heads/master
v: v3
  • Loading branch information
Stefan Richter committed Jan 30, 2008
1 parent 30eebd7 commit f04da8b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 14dc992aa782f8759c6d117d4322db62f62600ce
refs/heads/master: 5a8a1bcd15dfb9f177f3605fe6b9ba2bef2bf55a
12 changes: 6 additions & 6 deletions trunk/drivers/firewire/fw-sbp2.c
Original file line number Diff line number Diff line change
Expand Up @@ -661,9 +661,9 @@ static void sbp2_login(struct work_struct *work)
struct sbp2_login_response response;
int generation, node_id, local_node_id;

generation = device->card->generation;
node_id = device->node->node_id;
local_node_id = device->card->local_node->node_id;
generation = device->generation;
node_id = device->node_id;
local_node_id = device->card->node_id;

if (sbp2_send_management_orb(lu, node_id, generation,
SBP2_LOGIN_REQUEST, lu->lun, &response) < 0) {
Expand Down Expand Up @@ -911,9 +911,9 @@ static void sbp2_reconnect(struct work_struct *work)
struct fw_device *device = fw_device(unit->device.parent);
int generation, node_id, local_node_id;

generation = device->card->generation;
node_id = device->node->node_id;
local_node_id = device->card->local_node->node_id;
generation = device->generation;
node_id = device->node_id;
local_node_id = device->card->node_id;

if (sbp2_send_management_orb(lu, node_id, generation,
SBP2_RECONNECT_REQUEST,
Expand Down

0 comments on commit f04da8b

Please sign in to comment.