Skip to content
Snippets Groups Projects
  • Wolfgang Denk's avatar
    53677ef1
    Big white-space cleanup. · 53677ef1
    Wolfgang Denk authored
    
    This commit gets rid of a huge amount of silly white-space issues.
    Especially, all sequences of SPACEs followed by TAB characters get
    removed (unless they appear in print statements).
    
    Also remove all embedded "vim:" and "vi:" statements which hide
    indentation problems.
    
    Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
    53677ef1
    History
    Big white-space cleanup.
    Wolfgang Denk authored
    
    This commit gets rid of a huge amount of silly white-space issues.
    Especially, all sequences of SPACEs followed by TAB characters get
    removed (unless they appear in print statements).
    
    Also remove all embedded "vim:" and "vi:" statements which hide
    indentation problems.
    
    Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
math.h 404 B
#define BITS_PER_UNIT	8

typedef	 int HItype			__attribute__ ((mode (HI)));
typedef unsigned int UHItype		__attribute__ ((mode (HI)));

typedef		 int SItype		__attribute__ ((mode (SI)));
typedef unsigned int USItype		__attribute__ ((mode (SI)));

typedef int word_type			__attribute__ ((mode (__word__)));

struct SIstruct {HItype low, high;};

typedef union {
	struct SIstruct s;
	SItype ll;
} SIunion;