Commit df0d8bb8 authored by Brett Rudley's avatar Brett Rudley Committed by Greg Kroah-Hartman

staging: brcm80211: Remove 'failed' field from osh

Signed-off-by: default avatarBrett Rudley <brudley@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 2578f7ed
...@@ -39,7 +39,6 @@ struct osl_info { ...@@ -39,7 +39,6 @@ struct osl_info {
osl_pubinfo_t pub; osl_pubinfo_t pub;
uint magic; uint magic;
void *pdev; void *pdev;
uint failed;
uint bustype; uint bustype;
}; };
...@@ -56,7 +55,6 @@ osl_t *osl_attach(void *pdev, uint bustype, bool pkttag) ...@@ -56,7 +55,6 @@ osl_t *osl_attach(void *pdev, uint bustype, bool pkttag)
bzero(osh, sizeof(osl_t)); bzero(osh, sizeof(osl_t));
osh->magic = OS_HANDLE_MAGIC; osh->magic = OS_HANDLE_MAGIC;
osh->failed = 0;
osh->pdev = pdev; osh->pdev = pdev;
osh->pub.pkttag = pkttag; osh->pub.pkttag = pkttag;
osh->bustype = bustype; osh->bustype = bustype;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment