Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 13580
b: refs/heads/master
c: a4f6bbb
h: refs/heads/master
v: v3
  • Loading branch information
Peter Jones authored and James Ketrenos committed Nov 7, 2005
1 parent 79fdb9c commit db32c0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 054b08d48464bfa8e5be69829b59bd599c5dcd72
refs/heads/master: a4f6bbb305123c2c42322a10a770be64089a17ca
8 changes: 4 additions & 4 deletions trunk/drivers/net/wireless/ipw2200.c
Original file line number Diff line number Diff line change
Expand Up @@ -3304,7 +3304,7 @@ static int ipw_load(struct ipw_priv *priv)
rc = ipw_load_firmware(priv, bootfw->data + sizeof(struct fw_header),
bootfw->size - sizeof(struct fw_header));
if (rc < 0) {
IPW_ERROR("Unable to load boot firmware\n");
IPW_ERROR("Unable to load boot firmware: %d\n", rc);
goto error;
}

Expand All @@ -3327,7 +3327,7 @@ static int ipw_load(struct ipw_priv *priv)
rc = ipw_load_ucode(priv, ucode->data + sizeof(struct fw_header),
ucode->size - sizeof(struct fw_header));
if (rc < 0) {
IPW_ERROR("Unable to load ucode\n");
IPW_ERROR("Unable to load ucode: %d\n", rc);
goto error;
}

Expand All @@ -3339,7 +3339,7 @@ static int ipw_load(struct ipw_priv *priv)
sizeof(struct fw_header),
firmware->size - sizeof(struct fw_header));
if (rc < 0) {
IPW_ERROR("Unable to load firmware\n");
IPW_ERROR("Unable to load firmware: %d\n", rc);
goto error;
}

Expand Down Expand Up @@ -10958,7 +10958,7 @@ static int ipw_up(struct ipw_priv *priv)
* Also start the clocks. */
rc = ipw_load(priv);
if (rc) {
IPW_ERROR("Unable to load firmware: 0x%08X\n", rc);
IPW_ERROR("Unable to load firmware: %d\n", rc);
return rc;
}

Expand Down

0 comments on commit db32c0f

Please sign in to comment.