Skip to content

Commit

Permalink
Staging: rt2860: wpa.h: Fix space after unary '*' operator.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
L. Alberto Giménez authored and Greg Kroah-Hartman committed Jan 25, 2011
1 parent 68e4cca commit 6e4e2d9
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions drivers/staging/rt2860/wpa.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 6e4e2d9

Please sign in to comment.