aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorL. Alberto Giménez <agimenez@sysvalve.es>2011-01-22 19:07:20 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-01-25 05:03:25 -0500
commit6e4e2d9b7428c4e9f26d7c2779ead8172b01ebf0 (patch)
tree173ca2ce3e0c1c5f70ce0e71854c14fecb87fe33 /drivers
parent68e4ccaab251656290241c1f2653093cd3a1b225 (diff)
Staging: rt2860: wpa.h: Fix space after unary '*' operator.
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/rt2860/wpa.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/staging/rt2860/wpa.h b/drivers/staging/rt2860/wpa.h
index 116fc2caa88..a7796d330b7 100644
--- a/drivers/staging/rt2860/wpa.h
+++ b/drivers/staging/rt2860/wpa.h
@@ -369,19 +369,15 @@ struct PACKED rt_rsn_capability {
369/*======================================== 369/*========================================
370 The prototype is defined in cmm_wpa.c 370 The prototype is defined in cmm_wpa.c
371 ========================================*/ 371 ========================================*/
372BOOLEAN WpaMsgTypeSubst(u8 EAPType, int * MsgType); 372BOOLEAN WpaMsgTypeSubst(u8 EAPType, int *MsgType);
373 373
374void PRF(u8 * key, 374void PRF(u8 *key, int key_len, u8 *prefix, int prefix_len,
375 int key_len, 375 u8 *data, int data_len, u8 *output, int len);
376 u8 * prefix,
377 int prefix_len,
378 u8 * data, int data_len, u8 * output, int len);
379 376
380int PasswordHash(char *password, 377int PasswordHash(char *password,
381 unsigned char *ssid, int ssidlength, unsigned char *output); 378 unsigned char *ssid, int ssidlength, unsigned char *output);
382 379
383u8 *GetSuiteFromRSNIE(u8 *rsnie, 380u8 *GetSuiteFromRSNIE(u8 *rsnie, u32 rsnie_len, u8 type, u8 *count);
384 u32 rsnie_len, u8 type, u8 * count);
385 381
386void WpaShowAllsuite(u8 *rsnie, u32 rsnie_len); 382void WpaShowAllsuite(u8 *rsnie, u32 rsnie_len);
387 383