aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/winbond/linux/wb35reg_s.h
diff options
context:
space:
mode:
authorPekka Enberg <penberg@cs.helsinki.fi>2008-10-22 04:02:37 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-01-06 16:51:41 -0500
commit65144de7989badce1782cc3319d9b8b2b5805acc (patch)
tree422cbb1340fe364a6eec08c2ff72b0f183ec1254 /drivers/staging/winbond/linux/wb35reg_s.h
parentf37435ce8611a2c60f434ddfec8e6dfcd51829fc (diff)
Staging: w35und: wb35reg struct typedef removal
This patch removes the WB35REG struct typedefs and fixes up variable names that use the type. Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi> Acked-by: Pavel Machek <pavel@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/winbond/linux/wb35reg_s.h')
-rw-r--r--drivers/staging/winbond/linux/wb35reg_s.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/staging/winbond/linux/wb35reg_s.h b/drivers/staging/winbond/linux/wb35reg_s.h
index 54b034034cf..c77306c585d 100644
--- a/drivers/staging/winbond/linux/wb35reg_s.h
+++ b/drivers/staging/winbond/linux/wb35reg_s.h
@@ -85,8 +85,7 @@ struct wb35_reg_queue {
85// Internal variable for module 85// Internal variable for module
86//==================================== 86//====================================
87#define MAX_SQ3_FILTER_SIZE 5 87#define MAX_SQ3_FILTER_SIZE 5
88typedef struct _WB35REG 88struct wb35_reg {
89{
90 //============================ 89 //============================
91 // Register Bank backup 90 // Register Bank backup
92 //============================ 91 //============================
@@ -161,6 +160,6 @@ typedef struct _WB35REG
161 u32 SQ3_filter[MAX_SQ3_FILTER_SIZE]; 160 u32 SQ3_filter[MAX_SQ3_FILTER_SIZE];
162 u32 SQ3_index; 161 u32 SQ3_index;
163 162
164} WB35REG, *PWB35REG; 163};
165 164
166 165