staging: wilc1000: host_interface.h: move local define variables
authorLeo Kim <leo.kim@atmel.com>
Thu, 29 Oct 2015 03:05:28 +0000 (12:05 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch move local define variables to local define position.
 - ACTION
 - PROBE_REQ
 - PROBE_RESP
 - ACTION_FRM_IDX
 - PROBE_REQ_IDX

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.h

index 9595d488446bc09e2b96ce8ad3017f96a5ec0181..2dfd7f0d6b708b8812171396857d6935d5cb4035 100644 (file)
 #define STATION_MODE   0x02
 #define GO_MODE                0x03
 #define CLIENT_MODE    0x04
+#define ACTION         0xD0
+#define PROBE_REQ      0x40
+#define PROBE_RESP     0x50
 
-
+#define ACTION_FRM_IDX                         0
+#define PROBE_REQ_IDX                          1
 #define MAX_NUM_STA                            9
 #define ACTIVE_SCAN_TIME                       10
 #define PASSIVE_SCAN_TIME                      1200
@@ -249,14 +253,6 @@ struct reg_frame {
        u8 reg_id;
 };
 
-
-#define ACTION                 0xD0
-#define PROBE_REQ              0x40
-#define PROBE_RESP             0x50
-#define ACTION_FRM_IDX         0
-#define PROBE_REQ_IDX          1
-
-
 enum p2p_listen_state {
        P2P_IDLE,
        P2P_LISTEN,
This page took 0.025679 seconds and 5 git commands to generate.