This patch removes typedef for _stLocalSFAddRequest, changes the name of the struct to bcm_stLocalsfaddreq. In addition, any calls to typedefs "stLocalSFAddRequest or *pstLocalSFAddRequest" are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@xxxxxxxxx> --- drivers/staging/bcm/CmHost.c | 6 +++--- drivers/staging/bcm/cntrl_SignalingInterface.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c index ccfd093..d4153c1 100644 --- a/drivers/staging/bcm/CmHost.c +++ b/drivers/staging/bcm/CmHost.c @@ -1387,7 +1387,7 @@ ULONG StoreCmControlResponseMessage(struct bcm_mini_adapter *Adapter, PVOID pvBu pstAddIndication->psfAuthorizedSet = (stServiceFlowParamSI *)ntohl((ULONG)pstAddIndication->psfAuthorizedSet); if (pstAddIndicationAlt->u8Type == DSA_REQ) { - stLocalSFAddRequest AddRequest; + struct bcm_stlocalsfaddreq AddRequest; AddRequest.u8Type = pstAddIndicationAlt->u8Type; AddRequest.eConnectionDir = pstAddIndicationAlt->u8Direction; @@ -1395,8 +1395,8 @@ ULONG StoreCmControlResponseMessage(struct bcm_mini_adapter *Adapter, PVOID pvBu AddRequest.u16CID = pstAddIndicationAlt->u16CID; AddRequest.u16VCID = pstAddIndicationAlt->u16VCID; AddRequest.psfParameterSet = pstAddIndication->psfAuthorizedSet; - (*puBufferLength) = sizeof(stLocalSFAddRequest); - memcpy(pvBuffer, &AddRequest, sizeof(stLocalSFAddRequest)); + (*puBufferLength) = sizeof(struct bcm_stlocalsfaddreq); + memcpy(pvBuffer, &AddRequest, sizeof(struct bcm_stlocalsfaddreq)); kfree(pstAddIndication); return 1; } diff --git a/drivers/staging/bcm/cntrl_SignalingInterface.h b/drivers/staging/bcm/cntrl_SignalingInterface.h index 4f777eb..de30f6d 100644 --- a/drivers/staging/bcm/cntrl_SignalingInterface.h +++ b/drivers/staging/bcm/cntrl_SignalingInterface.h @@ -261,9 +261,9 @@ typedef struct _stServiceFlowParamSI { typedef stServiceFlowParamSI CServiceFlowParamSI; /* - * structure stLocalSFAddRequest + * structure bcm_stlocalsfaddreq */ -typedef struct _stLocalSFAddRequest { +struct bcm_stlocalsfaddreq { B_UINT8 u8Type; /* < Type */ B_UINT8 eConnectionDir; /* < Connection direction */ /* brief 16 bit TID */ @@ -275,7 +275,7 @@ typedef struct _stLocalSFAddRequest { /* brief structure ParameterSet */ stServiceFlowParamSI *psfParameterSet; /* < structure ParameterSet */ -} stLocalSFAddRequest, *pstLocalSFAddRequest; +}; /* * structure bcm_stlocalsfaddind -- 1.7.9.5 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/devel