This patch improves coding style in Queue.h
Whitespaces according to the coding guideline
Signed-off-by: Martin Gumbrecht <martin.gumbrecht@googlemail.com>
Signed-off-by: Christian Bay <christian.bay@studium.fau.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 
 
 
-#define ENQUEUEPACKET(_Head, _Tail,_Packet)    \
+#define ENQUEUEPACKET(_Head, _Tail, _Packet)   \
 do {                                           \
-    if (!_Head) {                           \
-               _Head = _Packet;                \
-       }                                       \
-       else {                                  \
-               (_Tail)->next = _Packet;        \
-        }                                       \
-       (_Packet)->next = NULL;                 \
-    _Tail = _Packet;                        \
-}while(0)
-#define DEQUEUEPACKET(Head, Tail )             \
+       if (!_Head) {                           \
+               _Head = _Packet;                \
+       }                                       \
+       else {                                  \
+               (_Tail)->next = _Packet;        \
+       }                                       \
+       (_Packet)->next = NULL;                 \
+       _Tail = _Packet;                        \
+} while (0)
+#define DEQUEUEPACKET(Head, Tail)              \
 do {                                           \
        if (Head) {                             \
-        if (!Head->next) {                      \
-               Tail = NULL;                    \
-        }                                       \
-        Head = Head->next;                      \
-       }                \
+               if (!Head->next) {              \
+                       Tail = NULL;            \
+               }                               \
+               Head = Head->next;              \
+       }                                       \
 } while (0)
 #endif /* __QUEUE_H__ */