*: remove some uses of argc
[oweals/busybox.git] / e2fsprogs / old_e2fsprogs / blkid / probe.h
index 78f796419d2875729a714d0549d151f23f213cc3..b6d8f8e7ddf36df62fa5e3ba8d0a27942b787ea1 100644 (file)
@@ -11,9 +11,8 @@
  * GNU Lesser General Public License.
  * %End-Header%
  */
-
-#ifndef _BLKID_PROBE_H
-#define _BLKID_PROBE_H
+#ifndef BLKID_PROBE_H
+#define BLKID_PROBE_H 1
 
 #include <linux/types.h>
 
@@ -238,7 +237,7 @@ struct ocfs_volume_header {
 
 struct ocfs_volume_label {
        unsigned char   disk_lock[48];
-       char            label[64];      
+       char            label[64];
        unsigned char   label_len[2];
        unsigned char  vol_id[16];
        unsigned char  vol_id_len[2];
@@ -308,9 +307,9 @@ _INLINE_ __u32 blkid_swab32(__u32 val)
 #ifdef EXT2FS_REQUIRE_486
        __asm__("bswap %0" : "=r" (val) : "0" (val));
 #else
-       __asm__("xchgb %b0,%h0\n\t"     /* swap lower bytes     */
-               "rorl $16,%0\n\t"       /* swap words           */
-               "xchgb %b0,%h0"         /* swap higher bytes    */
+       __asm__("xchgb %b0,%h0\n\t"     /* swap lower bytes  */
+               "rorl $16,%0\n\t"       /* swap words        */
+               "xchgb %b0,%h0"         /* swap higher bytes */
                :"=q" (val)
                : "0" (val));
 #endif
@@ -319,9 +318,9 @@ _INLINE_ __u32 blkid_swab32(__u32 val)
 
 _INLINE_ __u16 blkid_swab16(__u16 val)
 {
-       __asm__("xchgb %b0,%h0"         /* swap bytes           */ \
-               : "=q" (val) \
-               :  "0" (val)); \
+       __asm__("xchgb %b0,%h0"         /* swap bytes */
+               : "=q" (val)
+               :  "0" (val));
                return val;
 }