Skip to content

Commit

Permalink
Staging: bcm: Change BOOLEAN to bool in InterfaceAdapter.h
Browse files Browse the repository at this point in the history
This patch changes BOOLEAN to bool
in InterfaceAdapter.h.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Nov 2, 2012
1 parent 60896e6 commit 48df018
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/staging/bcm/InterfaceAdapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ typedef struct _INTR_ENDP_OUT {
typedef struct _USB_TCB {
struct urb *urb;
void *psIntfAdapter;
BOOLEAN bUsed;
bool bUsed;
} USB_TCB, *PUSB_TCB;

typedef struct _USB_RCB {
struct urb *urb;
void *psIntfAdapter;
BOOLEAN bUsed;
bool bUsed;
} USB_RCB, *PUSB_RCB;

/*
Expand All @@ -70,10 +70,10 @@ typedef struct _S_INTERFACE_ADAPTER {
atomic_t uNumRcbUsed;
atomic_t uCurrRcb;
struct bcm_mini_adapter *psAdapter;
BOOLEAN bFlashBoot;
BOOLEAN bHighSpeedDevice;
BOOLEAN bSuspended;
BOOLEAN bPreparingForBusSuspend;
bool bFlashBoot;
bool bHighSpeedDevice;
bool bSuspended;
bool bPreparingForBusSuspend;
struct work_struct usbSuspendWork;
} S_INTERFACE_ADAPTER, *PS_INTERFACE_ADAPTER;

Expand Down

0 comments on commit 48df018

Please sign in to comment.