diff options
author | Kevin McKinney <klmckinney1@gmail.com> | 2012-12-20 00:31:28 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-07 10:54:48 -0800 |
commit | 60dadf9def544665a696ee9b25ff12de32b51a3a (patch) | |
tree | 4e0b948632d3e02308be66072ac5449a5d0f5cec /drivers/staging/bcm/PHSDefines.h | |
parent | 86773aa91240d9361b38a41706b9c1b09be75da3 (diff) |
Staging: bcm: Remove typedef for _PHS_DEVICE_EXTENSION and call directly.
This patch removes typedef for _PHS_DEVICE_EXTENSION, and
changes the name of the struct to bcm_phs_extension. In
addition, any calls to struct "PHS_DEVICE_EXTENSION, or
*PPHS_DEVICE_EXTENSION;" are changed to call directly.
Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/PHSDefines.h')
-rw-r--r-- | drivers/staging/bcm/PHSDefines.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/bcm/PHSDefines.h b/drivers/staging/bcm/PHSDefines.h index 6f2607c8dac4..93df3746c3c1 100644 --- a/drivers/staging/bcm/PHSDefines.h +++ b/drivers/staging/bcm/PHSDefines.h @@ -84,11 +84,11 @@ typedef struct _S_SERVICEFLOW_TABLE { S_SERVICEFLOW_ENTRY stSFList[MAX_SERVICEFLOWS]; } S_SERVICEFLOW_TABLE; -typedef struct _PHS_DEVICE_EXTENSION { +struct bcm_phs_extension { /* PHS Specific data */ S_SERVICEFLOW_TABLE *pstServiceFlowPhsRulesTable; void *CompressedTxBuffer; void *UnCompressedRxBuffer; -} PHS_DEVICE_EXTENSION, *PPHS_DEVICE_EXTENSION; +}; #endif |