Skip to content

Commit

Permalink
staging: wlags49_h2: wl_if.h: fixes macro styling issues
Browse files Browse the repository at this point in the history
This commit sorts out macro styling issues that were indicated by
the checkpatch.pl script,

Signed-off-by: Johan Meiring <johanmeiring@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Johan Meiring authored and Greg Kroah-Hartman committed Nov 21, 2012
1 parent 7010157 commit 01fd573
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions drivers/staging/wlags49_h2/wl_if.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
#define MAX_RTS_BYTES 2347

#define MAX_RATES 8
#define MEGABIT 1024*1024
#define MEGABIT (1024 * 1024)

#define HCF_FAILURE 0xFF
#define UIL_FAILURE 0xFF
Expand Down Expand Up @@ -154,15 +154,15 @@ UIL_FUN_GET_INFO
UIL_FUN_PUT_INFO
*/

#define SIOCSIWNETNAME SIOCDEVPRIVATE+1
#define SIOCGIWNETNAME SIOCDEVPRIVATE+2
#define SIOCSIWSTANAME SIOCDEVPRIVATE+3
#define SIOCGIWSTANAME SIOCDEVPRIVATE+4
#define SIOCSIWPORTTYPE SIOCDEVPRIVATE+5
#define SIOCGIWPORTTYPE SIOCDEVPRIVATE+6
#define SIOCSIWNETNAME (SIOCDEVPRIVATE + 1)
#define SIOCGIWNETNAME (SIOCDEVPRIVATE + 2)
#define SIOCSIWSTANAME (SIOCDEVPRIVATE + 3)
#define SIOCGIWSTANAME (SIOCDEVPRIVATE + 4)
#define SIOCSIWPORTTYPE (SIOCDEVPRIVATE + 5)
#define SIOCGIWPORTTYPE (SIOCDEVPRIVATE + 6)

/* IOCTL code for the RTS interface */
#define WL_IOCTL_RTS SIOCDEVPRIVATE+7
#define WL_IOCTL_RTS (SIOCDEVPRIVATE + 7)

/* IOCTL subcodes for WL_IOCTL_RTS */
#define WL_IOCTL_RTS_READ 1
Expand Down

0 comments on commit 01fd573

Please sign in to comment.