Staging: rt2860: wpa.h: Fix space after unary '*' operator.
authorL. Alberto Giménez <agimenez@sysvalve.es>
Sun, 23 Jan 2011 00:07:20 +0000 (01:07 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 25 Jan 2011 10:03:25 +0000 (18:03 +0800)
Fix checkpatch error raised by the use of spaces between the '*' operator and
the corresponding variable name.

Signed-off-by: L. Alberto Giménez <agimenez@sysvalve.es>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/rt2860/wpa.h

index 116fc2caa886ee447d7668c22827f2c4228919c7..a7796d330b71de00c00ca52acd389528630a7a71 100644 (file)
@@ -369,19 +369,15 @@ struct PACKED rt_rsn_capability {
 /*========================================
        The prototype is defined in cmm_wpa.c
   ========================================*/
-BOOLEAN WpaMsgTypeSubst(u8 EAPType, int * MsgType);
+BOOLEAN WpaMsgTypeSubst(u8 EAPType, int *MsgType);
 
-void PRF(u8 * key,
-        int key_len,
-        u8 * prefix,
-        int prefix_len,
-        u8 * data, int data_len, u8 * output, int len);
+void PRF(u8 *key, int key_len, u8 *prefix, int prefix_len,
+        u8 *data, int data_len, u8 *output, int len);
 
 int PasswordHash(char *password,
                 unsigned char *ssid, int ssidlength, unsigned char *output);
 
-u8 *GetSuiteFromRSNIE(u8 *rsnie,
-                        u32 rsnie_len, u8 type, u8 * count);
+u8 *GetSuiteFromRSNIE(u8 *rsnie, u32 rsnie_len, u8 type, u8 *count);
 
 void WpaShowAllsuite(u8 *rsnie, u32 rsnie_len);
 
This page took 0.030768 seconds and 5 git commands to generate.