summaryrefslogtreecommitdiffstats
path: root/drivers/staging/bcm/target_params.h
diff options
context:
space:
mode:
authorKevin McKinney2012-12-17 23:35:20 +0100
committerGreg Kroah-Hartman2013-01-07 19:54:01 +0100
commitc81823340a7eaa3dfdd4c5a244deff30231d2e5c (patch)
treece88272525df846e2ddf9ab44f35be63a7783758 /drivers/staging/bcm/target_params.h
parentStaging: bcm: Replace B_UINT32 with u32 in target_params.h (diff)
downloadkernel-qcow2-linux-c81823340a7eaa3dfdd4c5a244deff30231d2e5c.tar.gz
kernel-qcow2-linux-c81823340a7eaa3dfdd4c5a244deff30231d2e5c.tar.xz
kernel-qcow2-linux-c81823340a7eaa3dfdd4c5a244deff30231d2e5c.zip
Staging: bcm: Remove typedef for _TARGET_PARAMS and call directly.
This patch removes typedef for _TARGET_PARAMS, and changes the name of the struct to bcm_target_params. In addition, any calls to struct "stTargetParams, TARGET_PARAMS, *PTARGET_PARAMS, STARGETPARAMS, or *PSTARGETPARAMS 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/target_params.h')
-rw-r--r--drivers/staging/bcm/target_params.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/bcm/target_params.h b/drivers/staging/bcm/target_params.h
index e416dac637d4..dc45f9ab854d 100644
--- a/drivers/staging/bcm/target_params.h
+++ b/drivers/staging/bcm/target_params.h
@@ -1,7 +1,7 @@
#ifndef TARGET_PARAMS_H
#define TARGET_PARAMS_H
-typedef struct _TARGET_PARAMS {
+struct bcm_target_params {
u32 m_u32CfgVersion;
u32 m_u32CenterFrequency;
u32 m_u32BandAScan;
@@ -52,6 +52,6 @@ typedef struct _TARGET_PARAMS {
* bit 16-31 Band AMC Data configuration: Bit 16 = 1 – Band AMC 2x3 support.
*/
u32 m_u32BandAMCEnable;
-} stTargetParams, TARGET_PARAMS, *PTARGET_PARAMS, STARGETPARAMS, *PSTARGETPARAMS;
+};
#endif