Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 268678
b: refs/heads/master
c: 268b06a
h: refs/heads/master
v: v3
  • Loading branch information
David Kilroy authored and Greg Kroah-Hartman committed Oct 4, 2011
1 parent b135055 commit aa13f4f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 115 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: 8bf90539d672090f725b6a5456f3898a602be193
refs/heads/master: 268b06ac8b3b16516cf926872d822836caf785cc
114 changes: 0 additions & 114 deletions trunk/drivers/staging/wlags49_h2/wl_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -501,117 +501,3 @@ int wl_adapter_is_open(struct net_device *dev)
return link->open;
} /* wl_adapter_is_open */
/*============================================================================*/


#if DBG

/*******************************************************************************
* DbgEvent()
*******************************************************************************
*
* DESCRIPTION:
*
* Converts the card serivces events to text for debugging.
*
* PARAMETERS:
*
* mask - a integer representing the error(s) being reported by Card
* Services.
*
* RETURNS:
*
* a pointer to a string describing the error(s)
*
******************************************************************************/
const char *DbgEvent(int mask)
{
static char DbgBuffer[256];
char *pBuf;
/*--------------------------------------------------------------------*/

pBuf = DbgBuffer;
*pBuf = '\0';


if (mask & CS_EVENT_WRITE_PROTECT)
strcat(pBuf, "WRITE_PROTECT ");

if (mask & CS_EVENT_CARD_LOCK)
strcat(pBuf, "CARD_LOCK ");

if (mask & CS_EVENT_CARD_INSERTION)
strcat(pBuf, "CARD_INSERTION ");

if (mask & CS_EVENT_CARD_REMOVAL)
strcat(pBuf, "CARD_REMOVAL ");

if (mask & CS_EVENT_BATTERY_DEAD)
strcat(pBuf, "BATTERY_DEAD ");

if (mask & CS_EVENT_BATTERY_LOW)
strcat(pBuf, "BATTERY_LOW ");

if (mask & CS_EVENT_READY_CHANGE)
strcat(pBuf, "READY_CHANGE ");

if (mask & CS_EVENT_CARD_DETECT)
strcat(pBuf, "CARD_DETECT ");

if (mask & CS_EVENT_RESET_REQUEST)
strcat(pBuf, "RESET_REQUEST ");

if (mask & CS_EVENT_RESET_PHYSICAL)
strcat(pBuf, "RESET_PHYSICAL ");

if (mask & CS_EVENT_CARD_RESET)
strcat(pBuf, "CARD_RESET ");

if (mask & CS_EVENT_REGISTRATION_COMPLETE)
strcat(pBuf, "REGISTRATION_COMPLETE ");

/* if (mask & CS_EVENT_RESET_COMPLETE)
strcat(pBuf, "RESET_COMPLETE "); */

if (mask & CS_EVENT_PM_SUSPEND)
strcat(pBuf, "PM_SUSPEND ");

if (mask & CS_EVENT_PM_RESUME)
strcat(pBuf, "PM_RESUME ");

if (mask & CS_EVENT_INSERTION_REQUEST)
strcat(pBuf, "INSERTION_REQUEST ");

if (mask & CS_EVENT_EJECTION_REQUEST)
strcat(pBuf, "EJECTION_REQUEST ");

if (mask & CS_EVENT_MTD_REQUEST)
strcat(pBuf, "MTD_REQUEST ");

if (mask & CS_EVENT_ERASE_COMPLETE)
strcat(pBuf, "ERASE_COMPLETE ");

if (mask & CS_EVENT_REQUEST_ATTENTION)
strcat(pBuf, "REQUEST_ATTENTION ");

if (mask & CS_EVENT_CB_DETECT)
strcat(pBuf, "CB_DETECT ");

if (mask & CS_EVENT_3VCARD)
strcat(pBuf, "3VCARD ");

if (mask & CS_EVENT_XVCARD)
strcat(pBuf, "XVCARD ");


if (*pBuf) {
pBuf[strlen(pBuf) - 1] = '\0';
} else {
if (mask != 0x0)
sprintf(pBuf, "<<0x%08x>>", mask);
}

return pBuf;
} /* DbgEvent */
/*============================================================================*/

#endif /* DBG */

0 comments on commit aa13f4f

Please sign in to comment.