summaryrefslogtreecommitdiffstats
path: root/drivers/staging/bcm/target_params.h
diff options
context:
space:
mode:
authorKevin McKinney <klmckinney1@gmail.com>2012-12-17 17:35:20 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-07 10:54:01 -0800
commitc81823340a7eaa3dfdd4c5a244deff30231d2e5c (patch)
treece88272525df846e2ddf9ab44f35be63a7783758 /drivers/staging/bcm/target_params.h
parenta637f9041a164088c03b1a8b2ed0b6e65ad24e0e (diff)
downloadop-kernel-dev-c81823340a7eaa3dfdd4c5a244deff30231d2e5c.zip
op-kernel-dev-c81823340a7eaa3dfdd4c5a244deff30231d2e5c.tar.gz
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 e416dac..dc45f9a 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
OpenPOWER on IntegriCloud