Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 171012
b: refs/heads/master
c: 708567e
h: refs/heads/master
v: v3
  • Loading branch information
Samuel Ortiz authored and John W. Linville committed Oct 27, 2009
1 parent 1e62e41 commit 2643122
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 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: f96cca8483c1b0bcc8002dc466159bf8fd53ca47
refs/heads/master: 708567e0723f3a217286c2b60805af6de360ec50
10 changes: 8 additions & 2 deletions trunk/drivers/net/wireless/iwmc3200wifi/rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -1057,8 +1057,14 @@ static int iwm_ntf_wifi_if_wrapper(struct iwm_priv *iwm, u8 *buf,
unsigned long buf_size,
struct iwm_wifi_cmd *cmd)
{
struct iwm_umac_wifi_if *hdr =
(struct iwm_umac_wifi_if *)cmd->buf.payload;
struct iwm_umac_wifi_if *hdr;

if (cmd == NULL) {
IWM_ERR(iwm, "Couldn't find expected wifi command\n");
return -EINVAL;
}

hdr = (struct iwm_umac_wifi_if *)cmd->buf.payload;

IWM_DBG_NTF(iwm, DBG, "WIFI_IF_WRAPPER cmd is delivered to UMAC: "
"oid is 0x%x\n", hdr->oid);
Expand Down

0 comments on commit 2643122

Please sign in to comment.