Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 143811
b: refs/heads/master
c: e873cff
h: refs/heads/master
i:
  143809: 6103b9a
  143807: edc985c
v: v3
  • Loading branch information
Robin Holt authored and Linus Torvalds committed Apr 21, 2009
1 parent 8f93244 commit 6963c1c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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: 2d7197f412e75587037449960bc4c7ea06155a7f
refs/heads/master: e873cff0fada2b0532ca5104d5b5f5b02aa442b2
2 changes: 1 addition & 1 deletion trunk/drivers/misc/sgi-gru/grufile.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ static int __init gru_init(void)
void *gru_start_vaddr;

if (!is_uv_system())
return -ENODEV;
return 0;

#if defined CONFIG_IA64
gru_start_paddr = 0xd000000000UL; /* ZZZZZZZZZZZZZZZZZZZ fixme */
Expand Down
12 changes: 6 additions & 6 deletions trunk/drivers/misc/sgi-xp/xp_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,19 +248,19 @@ xp_init(void)
enum xp_retval ret;
int ch_number;

/* initialize the connection registration mutex */
for (ch_number = 0; ch_number < XPC_MAX_NCHANNELS; ch_number++)
mutex_init(&xpc_registrations[ch_number].mutex);

if (is_shub())
ret = xp_init_sn2();
else if (is_uv())
ret = xp_init_uv();
else
ret = xpUnsupported;
ret = 0;

if (ret != xpSuccess)
return -ENODEV;

/* initialize the connection registration mutex */
for (ch_number = 0; ch_number < XPC_MAX_NCHANNELS; ch_number++)
mutex_init(&xpc_registrations[ch_number].mutex);
return ret;

return 0;
}
Expand Down

0 comments on commit 6963c1c

Please sign in to comment.