Reverting became necessary after it turned out that the patches in the u-boot-arm repo were modified, and in some cases corrupted. This reverts the following commits: 066bebd6353e33af3adefc3404560871699e9961 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6 c88ae20580b2b01487b4cdcc8b2a113f551aee36 a147e56f03871bba4f05058d5e04ce7deb010b04 d6674e0e2a6a1f033945f78838566210d3f28c95 8c8463cce44d849e37744749b32d38e1dfb12e50 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d 8bf69d81782619187933a605f1a95ee1d069478d 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d a574a73852a527779234e73e17e7597fd8128882 1377b5583a48021d983e1fd565f7d40c89e84d63 1704dc20917b4f71e373e2c888497ee666d40380 Signed-off-by: Wolfgang Denk <wd@denx.de>
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
/* bits.h
|
|
* Copyright (c) 2004 Texas Instruments
|
|
*
|
|
* This package is free software; you can redistribute it and/or
|
|
* modify it under the terms of the license found in the file
|
|
* named COPYING that should have accompanied this file.
|
|
*
|
|
* THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
#ifndef __bits_h
|
|
#define __bits_h 1
|
|
|
|
#define BIT0 (1<<0)
|
|
#define BIT1 (1<<1)
|
|
#define BIT2 (1<<2)
|
|
#define BIT3 (1<<3)
|
|
#define BIT4 (1<<4)
|
|
#define BIT5 (1<<5)
|
|
#define BIT6 (1<<6)
|
|
#define BIT7 (1<<7)
|
|
#define BIT8 (1<<8)
|
|
#define BIT9 (1<<9)
|
|
#define BIT10 (1<<10)
|
|
#define BIT11 (1<<11)
|
|
#define BIT12 (1<<12)
|
|
#define BIT13 (1<<13)
|
|
#define BIT14 (1<<14)
|
|
#define BIT15 (1<<15)
|
|
#define BIT16 (1<<16)
|
|
#define BIT17 (1<<17)
|
|
#define BIT18 (1<<18)
|
|
#define BIT19 (1<<19)
|
|
#define BIT20 (1<<20)
|
|
#define BIT21 (1<<21)
|
|
#define BIT22 (1<<22)
|
|
#define BIT23 (1<<23)
|
|
#define BIT24 (1<<24)
|
|
#define BIT25 (1<<25)
|
|
#define BIT26 (1<<26)
|
|
#define BIT27 (1<<27)
|
|
#define BIT28 (1<<28)
|
|
#define BIT29 (1<<29)
|
|
#define BIT30 (1<<30)
|
|
#define BIT31 (1<<31)
|
|
|
|
#endif
|