diff options
author | Philip Balister <philip@opensdr.com> | 2010-09-26 21:22:07 -0400 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-09-26 21:22:07 -0400 |
commit | 507283b3d43d653bf7ff1b2aa04f3d642297c9b1 (patch) | |
tree | 5999f71c3b66f3d232aee739110597024099f279 /host/include | |
parent | 018813d46def4d25ec5a937da2235d7f2adce5b3 (diff) | |
download | uhd-507283b3d43d653bf7ff1b2aa04f3d642297c9b1.tar.gz uhd-507283b3d43d653bf7ff1b2aa04f3d642297c9b1.tar.bz2 uhd-507283b3d43d653bf7ff1b2aa04f3d642297c9b1.zip |
Remove BIT macro
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/linux/usrp_e.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/include/linux/usrp_e.h b/host/include/linux/usrp_e.h index fd38027d4..80f3a287b 100644 --- a/host/include/linux/usrp_e.h +++ b/host/include/linux/usrp_e.h @@ -34,8 +34,8 @@ struct usrp_e_ctl32 { #define UE_SPI_TXRX 1 /* Defines for spi ctrl register */ -#define UE_SPI_CTRL_TXNEG (BIT(10)) -#define UE_SPI_CTRL_RXNEG (BIT(9)) +#define UE_SPI_CTRL_TXNEG (1<<10) +#define UE_SPI_CTRL_RXNEG (1<<9) #define UE_SPI_PUSH_RISE 0 #define UE_SPI_PUSH_FALL UE_SPI_CTRL_TXNEG |