Commit da6830ac authored by mike.rapoport@gmail.com's avatar mike.rapoport@gmail.com Committed by Greg Kroah-Hartman

staging: brcm80211: remove unrefrenced malloced field

from 'struct osl_info' structure
Signed-off-by: default avatarMike Rapoport <mike.rapoport@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 182acb3c
...@@ -37,7 +37,6 @@ struct osl_info { ...@@ -37,7 +37,6 @@ struct osl_info {
osl_pubinfo_t pub; osl_pubinfo_t pub;
uint magic; uint magic;
void *pdev; void *pdev;
uint malloced;
uint failed; uint failed;
uint bustype; uint bustype;
}; };
...@@ -128,7 +127,6 @@ osl_t *osl_attach(void *pdev, uint bustype, bool pkttag) ...@@ -128,7 +127,6 @@ osl_t *osl_attach(void *pdev, uint bustype, bool pkttag)
#endif /* BRCM_FULLMAC */ #endif /* BRCM_FULLMAC */
osh->magic = OS_HANDLE_MAGIC; osh->magic = OS_HANDLE_MAGIC;
osh->malloced = 0;
osh->failed = 0; osh->failed = 0;
osh->pdev = pdev; osh->pdev = pdev;
osh->pub.pkttag = pkttag; osh->pub.pkttag = pkttag;
......
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