From: Brett Rudley Date: Thu, 4 Nov 2010 02:53:58 +0000 (-0700) Subject: staging: brcm80211: Remove 'failed' field from osh X-Git-Tag: v2.6.38-rc1~423^2~434 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=df0d8bb8daa1e8c3c2afcf93c46ef0294c78ac26;p=karo-tx-linux.git staging: brcm80211: Remove 'failed' field from osh Signed-off-by: Brett Rudley Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/brcm80211/util/linux_osl.c b/drivers/staging/brcm80211/util/linux_osl.c index 3255b31b88eb..d6cca69814cf 100644 --- a/drivers/staging/brcm80211/util/linux_osl.c +++ b/drivers/staging/brcm80211/util/linux_osl.c @@ -39,7 +39,6 @@ struct osl_info { osl_pubinfo_t pub; uint magic; void *pdev; - uint failed; uint bustype; }; @@ -56,7 +55,6 @@ osl_t *osl_attach(void *pdev, uint bustype, bool pkttag) bzero(osh, sizeof(osl_t)); osh->magic = OS_HANDLE_MAGIC; - osh->failed = 0; osh->pdev = pdev; osh->pub.pkttag = pkttag; osh->bustype = bustype;