diff --git a/cpu/msp430/msp430def.h b/cpu/msp430/msp430def.h index 7f95473c7..05e9b0bbc 100644 --- a/cpu/msp430/msp430def.h +++ b/cpu/msp430/msp430def.h @@ -25,8 +25,6 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)$Id: msp430def.h,v 1.5 2010/03/19 14:50:07 joxe Exp $ */ #ifndef MSP430DEF_H @@ -40,7 +38,6 @@ #define eint() __enable_interrupt() #define __MSP430__ 1 #define CC_CONF_INLINE -#define BV(x) (1 << x) #else /* __IAR_SYSTEMS_ICC__ */ @@ -59,6 +56,10 @@ #endif /* __IAR_SYSTEMS_ICC__ */ +#ifndef BV +#define BV(x) (1 << x) +#endif + #ifdef HAVE_STDINT_H #include #else