summaryrefslogtreecommitdiffstats
path: root/drivers/staging/bcm/cntrl_SignalingInterface.h
diff options
context:
space:
mode:
authorKevin McKinney2012-09-21 04:43:44 +0200
committerGreg Kroah-Hartman2012-09-21 18:13:14 +0200
commitf34170c762e88512796be7f94df80f294d12de95 (patch)
tree7638d398de0bb2515714b3576f647f2608ade39d /drivers/staging/bcm/cntrl_SignalingInterface.h
parentstaging: tidspbridge: fix return value check in dsp_wdt_init() (diff)
downloadkernel-qcow2-linux-f34170c762e88512796be7f94df80f294d12de95.tar.gz
kernel-qcow2-linux-f34170c762e88512796be7f94df80f294d12de95.tar.xz
kernel-qcow2-linux-f34170c762e88512796be7f94df80f294d12de95.zip
Staging: bcm: Remove typedef for _stIM_sfHostNotify and call directly.
This patch removes typedef for _stIM_sfHostNotify, changes the name of the struct from _stIM_sfHostNotify to bcm_stim_sfhostnotify. In addition, any calls to the following typedef "stIM_sfHostNotify" are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/cntrl_SignalingInterface.h')
-rw-r--r--drivers/staging/bcm/cntrl_SignalingInterface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/bcm/cntrl_SignalingInterface.h b/drivers/staging/bcm/cntrl_SignalingInterface.h
index 451664b73f07..11b3181d537a 100644
--- a/drivers/staging/bcm/cntrl_SignalingInterface.h
+++ b/drivers/staging/bcm/cntrl_SignalingInterface.h
@@ -341,13 +341,13 @@ typedef struct stLocalSFDeleteIndication {
B_UINT8 u8Padding1[3]; /* < 3 byte Padding */
} stLocalSFDeleteIndication;
-typedef struct _stIM_SFHostNotify {
+struct bcm_stim_sfhostnotify {
B_UINT32 SFID; /* SFID of the service flow */
B_UINT16 newCID; /* the new/changed CID */
B_UINT16 VCID; /* Get new Vcid if the flow has been made active in CID update TLV, but was inactive earlier or the orig vcid */
B_UINT8 RetainSF; /* Indication to Host if the SF is to be retained or deleted; if TRUE-retain else delete */
B_UINT8 QoSParamSet; /* QoS paramset of the retained SF */
B_UINT16 u16reserved; /* For byte alignment */
-} stIM_SFHostNotify;
+};
#endif