Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/blkid/probe.h

    r1765 r2725  
    1212 * %End-Header%
    1313 */
    14 
    15 #ifndef _BLKID_PROBE_H
    16 #define _BLKID_PROBE_H
     14#ifndef BLKID_PROBE_H
     15#define BLKID_PROBE_H 1
    1716
    1817#include <linux/types.h>
     
    309308    __asm__("bswap %0" : "=r" (val) : "0" (val));
    310309#else
    311     __asm__("xchgb %b0,%h0\n\t" /* swap lower bytes */
    312         "rorl $16,%0\n\t"   /* swap words       */
    313         "xchgb %b0,%h0"     /* swap higher bytes    */
     310    __asm__("xchgb %b0,%h0\n\t" /* swap lower bytes  */
     311        "rorl $16,%0\n\t"   /* swap words        */
     312        "xchgb %b0,%h0"     /* swap higher bytes */
    314313        :"=q" (val)
    315314        : "0" (val));
     
    320319_INLINE_ __u16 blkid_swab16(__u16 val)
    321320{
    322     __asm__("xchgb %b0,%h0"     /* swap bytes       */ \
    323         : "=q" (val) \
    324         :  "0" (val)); \
     321    __asm__("xchgb %b0,%h0"     /* swap bytes */
     322        : "=q" (val)
     323        :  "0" (val));
    325324        return val;
    326325}
Note: See TracChangeset for help on using the changeset viewer.