Skip to content

Commit

Permalink
Staging: brcm80211: s/ushort/unsigned short/
Browse files Browse the repository at this point in the history
This changes the usage everywhere in the driver, and removes
the definition as it should no longer be used anywhere.

Cc: Brett Rudley <brudley@broadcom.com>
Cc: Henry Ptasinski <henryp@broadcom.com>
Cc: Nohee Ko <noheek@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Oct 5, 2010
1 parent 580a0bd commit d7e5088
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/brcm80211/brcmfmac/bcmutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -807,16 +807,16 @@ int bcm_ether_atoe(char *p, struct ether_addr *ea)
* parameter order is like strncpy, but returns count
* of bytes copied. Minimum bytes copied is null char(1)/wchar(2)
*/
ulong wchar2ascii(char *abuf, ushort * wbuf, ushort wbuflen, ulong abuflen)
ulong wchar2ascii(char *abuf, unsigned short * wbuf, unsigned short wbuflen, ulong abuflen)
{
ulong copyct = 1;
ushort i;
unsigned short i;

if (abuflen == 0)
return 0;

/* wbuflen is in bytes */
wbuflen /= sizeof(ushort);
wbuflen /= sizeof(unsigned short);

for (i = 0; i < wbuflen; ++i) {
if (--abuflen == 0)
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/brcm80211/include/bcmutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ extern "C" {
extern char *BCMROMFN(bcmstrcat) (char *dest, const char *src);
extern char *BCMROMFN(bcmstrncat) (char *dest, const char *src,
uint size);
extern ulong wchar2ascii(char *abuf, ushort *wbuf, ushort wbuflen,
extern ulong wchar2ascii(char *abuf, unsigned short *wbuf, unsigned short wbuflen,
ulong abuflen);
char *bcmstrtok(char **string, const char *delimiters, char *tokdelim);
int bcmstricmp(const char *s1, const char *s2);
Expand Down
6 changes: 0 additions & 6 deletions drivers/staging/brcm80211/include/typedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ typedef unsigned long long int uintptr;
#endif

#define TYPEDEF_UINT
#define TYPEDEF_USHORT
#define TYPEDEF_ULONG

/*
Expand All @@ -40,10 +39,6 @@ typedef unsigned long long int uintptr;

/* define ushort, uint, ulong */

#ifndef TYPEDEF_USHORT
typedef unsigned short ushort;
#endif

#ifndef TYPEDEF_UINT
typedef unsigned int uint;
#endif
Expand Down Expand Up @@ -94,7 +89,6 @@ typedef signed int int32;

#define AUTO (-1) /* Auto = -1 */

#undef TYPEDEF_USHORT
#undef TYPEDEF_UINT
#undef TYPEDEF_ULONG
#undef TYPEDEF_UINT16
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/brcm80211/include/wlioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,8 @@ typedef struct wl_wsec_key {

/* receptacle for WLC_SET_WSEC_PMK parameter */
typedef struct {
ushort key_len; /* octets in key material */
ushort flags; /* key handling qualification */
unsigned short key_len; /* octets in key material */
unsigned short flags; /* key handling qualification */
u8 key[WSEC_MAX_PSK_LEN]; /* PMK material */
} wsec_pmk_t;

Expand Down

0 comments on commit d7e5088

Please sign in to comment.